The information in this article applies to:
BUG #: 16126 (Windows: 6.50.201) SYMPTOMSExample B in the "Transact-SQL Reference" section on sp_addtype does not always add a user-defined datatype that defaults to allowing nulls. STATUSMicrosoft has confirmed this to be a problem in Microsoft SQL Server version 6.0 documentation. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available. MORE INFORMATION
In the section on the nulltype parameter for sp_addtype, the "Transact-SQL
Reference" correctly states that if a null value is specified for this
parameter, the default nullability setting of the data type will be based
on the current ansinull setting for the connection. You can determine what
the current setting is by using the system function getansinull(); you can
control the setting with the SET and sp_dboption commands.
However, specifying NULL for the nulltype parameter passes a null value into sp_addtype, not the string "NULL." The command above will therefore set birthday's nullability default to the current ansinull setting. If ansinull is off, then birthday will default to not null. If you want a datatype to default to allowing nulls regardless of the current setting of ansinull, you should instead use the following command:
Additional query words: wrong incorrect erroneously erroneous
Keywords : kbusage SSrvDoc_Err SSrvStProc SSrvTran_SQL kbbug6.00 |
Last Reviewed: April 2, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |