The_Doc_Man,
I'm pursuing the issue, because anywhere I've read about this topic (ZLS vs Null), the recommendation has been the opposite of yours, namely, use Null to denote absence of value, and disallow ZLS (together with other buggy/problem properties, "Auto Corrupt", Subdatasheet to name a few).
As seen in the Allen Browne link, he lists this (defaulting to allow ZLS) under the category "Other bugs", and states "
In Access 2000 and later, the property defaults to Yes, and you must remember to turn it off every time you add a field to a table." (bold part is in the original article) and "
There is no justification for having this property on by default. There is no justification for the inconsistency with previous versions.".
But, he also says "
The savvy developer uses engine-level validation wherever possible, and permits a ZLS only in rare and specific circumstances." - and I was kind of hoping that you would give one of these rare and specific circumstances. What tehNellie describes, is using both ZLS and Null to denote different reasons for absence of value, which, in my view, is one such circumstance (I'll follow up with a sample at the bottom of the reply), but I asked you why you think ZLS should be used over Null in your sample (quality control tracking), to which I still can't understand the answer.
What you have given, seems to me, to be circumstances where ZLS and Null are interchangeable. When that is the case, I'm with Allen Browne et al.
But, you've given us something to test and verify - based on your assumptions, two identical databases where one allows ZLS, the other allows Null should be of different sizes, shouldn't they? Based on the descriptors, 8 bytes, initializations and whatnots?
In a db with table Table1, with id Autonumber, tst text 35 allowing ZLS, i put 163 840 rows having only the Autonumber and ZLS. After compact and repair, the size was 4 876KB.
In a db with table Table1, with id Autonumber, tst text 35 disallowing ZLS, i put 163 840 rows having only the Autonumber and Null. After compact & repair, the size was 4 876KB.
To really test, I updated all the text fields with the text "test", which made both dbs 5 708 after compact & repair, then set it back again to ZLS and Null respectively, which set both databases back to 4 876 KB after compact & repair.
Then I suddenly thought that since I had to update each text field, also those with Nulls, that perhaps this would "initialize" those fields. So, I created two new database, this time with two text fields. Then populated the same amount of records, this time being careful not to touch the "Null" field (appended only to the other text field). But again, after compact & repair, both db's showed identical sizes (5 868KB).
I e - no difference in size.
So again - I don't understand why you think one should choose ZLS over Null to denote absence of value in your sample (quality control tracking), or anywhere, for that sake. In fact, I don't seem to neither understand where you've given your reasons for why ZLS should be preferred over Null in you sample, nor what your actual reason are. If there is something I've completely missed, I would like to know, else I'll continue to side with Allen Browne et al
The only time I think it could be handy, is if you need to differentiate between two different types of absence of value. For instance, as tehNellie refers to, middle initial, or perhaps middle name. For some people, the middle name is unknown, and some people simply don't have such.
One could use Null to denote that we don't know this persons middle name, and ZLS to denote that this person does not have a middle name.
In the following sample illustrating this, we don't know Johns middle name, but we know Jane doesn't have one.
INSERT INTO mytest (fname, mname, lname) VALUES ('John', Null, 'Doe')
INSERT INTO mytest (fname, mname, lname) VALUES ('Jane', '', 'Doe')
This makes it possible to do the following distinctions
SELECT * FROM mytest WHERE mname = ''
SELECT * FROM mytest WHERE mname IS NULL
I e, only list those not having a middle name, and list all those where the middle name is unknown.
I haven't encountered any need to do such yet.
There are challenges with this, too.
Disregarding this sample, but in some situations where you currently have two distinct reasons for absence of value, it's easy to represent this with ZLS and Null - but what if a third reason pops up? Perhaps a status field could handle this better, with more flexibility?
The three value logic of this (ZLS/Null/Actual value) will need to be exposed to the user in some way, which means both the interface and the user will need to handle it. Not to mention the future developers/maintainers of the system will need a firm grasp on how these are to be handled, to avoid mixing them.