
May 19th, 2000, 09:12 AM
|
|
Junior Member
|
|
Join Date: May 2000
Posts: 2
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Nullable fields should be used to keep track of data where it may or may not be available when the data is entered. If you choose not to have null fields, and the information for the field is not available when the data is loaded, you will need to have some sort of default that takes the place of the null.
Not null is usually the preferred way of setting up fields, because it saves the overhead of the null indicator in both storage and search capabilities.
|