The information in this article applies to:
BUG #: 53819 (SQLBUG_70) SYMPTOMSStored Procedure names that start with the letters 'go' are treated by the Query Analyzer (ISQLW.EXE) utility as an action statement. Execution of such stored procedures may fail with the following error message: The stored procedure name listed in the message will be the name of the procedure without the first two letters 'go'. CAUSE
SQL Server query utilities use the keyword 'go' as the default delimiter for a batch of TSQL commands. The utility submits incorrect commands to the SQL Server. In the example, when calling a procedure name 'got_entries' from Query Analyzer, the query submitted to SQL Server is 't_entries' not 'got_entries'. WORKAROUNDTo workaround this problem, you can either:
STATUSMicrosoft has confirmed this to be a problem in SQL Server version 7.0. MORE INFORMATIONHere is an example of the error: RESULT: The following error occurs:
Additional query words:
Keywords : kbSQLServ700 kbSQLServ700bug |
Last Reviewed: April 23, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |