FIX: Incorrect Warning About Procedure/ Trigger Name LengthLast reviewed: September 19, 1997Article ID: Q156005 |
The information in this article applies to:
SYMPTOMSCreating a stored procedure or trigger with a name longer than 30 characters displays an incorrect warning:
Name should be between 1 and 20 characters and should not contain spaces or begin with a number. CAUSEThe documentation for CREATE PROCEDURE in SQL Server 6.5 Books Online incorrectly states the length of a procedure:
procedure_name Is the name of the new stored procedure. Procedure names must conform to the rules for identifiers and must be unique within the database and its owner. You can create local or global temporary procedures by preceding the procedure_name with a single pound sign (#table_name) for local temporary procedures and a double pound sign (##table_name) for global temporary procedures. The complete name, including # or ##, cannot exceed 20 characters.This is located in the books online in the following location:
\\Transact-SQL Reference 6.0 \C \Create Procedure Statement \Create Procedure Statement RESOLUTIONThe warning message can be ignored. You should be able to create a procedure or trigger with name up to 30 character long.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug was corrected in Visual C++ version 5.0.
MORE INFORMATION
Steps to Reproduce Behavior
Keywords : vcbuglist420 VCEntIss vcfixlist500 kbprg kbbuglist kbfixlist Technology : kbMfc Version : 4.2 Platform : NT WINDOWS Issue type : kbbug Solution Type : kbfix |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |