FIX: CREATE TABLE in Stored Procedure May Fail With Error 1750

Last reviewed: April 8, 1997
Article ID: Q150775

The information in this article applies to:
  • Microsoft SQL Server, version 6.5
BUG#: 14884 (6.50)

SYMPTOMS

EXECuting a stored procedure that creates a temp or permanent table with defaults may fail with the error:

   [INTERNAL ERROR] unable to locate original param in voidptr list.
   Msg 1750, Level 16, State 0
   Unable to create constraint. See previous errors.

CAUSE

If there is some activity in the stored procedure before the CREATE TABLE, this error can occur. In the simplest case, executing the following stored procedure will fail:

create proc sp_test1 as begin IF ( @@error <> 0 ) BEGIN

   GOTO cleanup
END
CREATE TABLE   #t1 (c1         int NOT NULL DEFAULT -1)
cleanup: end go declare @rc int EXEC @rc = sp_test1 SELECT @rc go

WORKAROUND

Use some other method than a CONSTRAINT, such as ISNULL, to get the default values you want into the table.

STATUS

Microsoft has confirmed this to be a problem in Microsoft SQL Server version 6.5. This problem has been corrected in U.S. Service Pack 1 for Microsoft SQL Server version 6.5. For more information, contact your primary support provider.


Additional query words: sql65 default create table
Keywords : kbbug6.50 kbfix6.50.sp1 kbprg SSrvProg SSrvStProc
Version : 6.5
Platform : WINDOWS


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: April 8, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.