The information in this article applies to:
SYMPTOMSExecuting sp_help on a user-defined data type of type varbinary returns two rows, with Storage_type being of the types timestamp and varbinary, respectively. CAUSEThis problem occurs because both timestamp and varbinary have the same type field value (37) in the systypes table. Sp_help does not eliminate the special case for timestamp. WORKAROUND
You can drop sp_help and recreate it after modifying the text of
the sp_help procedure to handle this correctly. Do this by
searching for the text "st.usertype != 18" to ignore the sysname
table and adding the following additional clause to the WHERE list:
This clause eliminates the condition for timestamp. STATUSMicrosoft has confirmed this to be a problem in SQL Server version 4.2 for OS/2 and Microsoft SQL Server versions 4.21 and 4.21a. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available. Additional query words: Transact-SQL datatype Windows NT
Keywords : kbprg kbbug4.20 kbbug4.21 kbbug4.21a SSrvServer SSrvWinNT |
Last Reviewed: March 16, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |