BUG: Creating Temp Table in SEM Causes Error 208Last reviewed: May 2, 1997Article ID: Q141974 |
The information in this article applies to:
SYMPTOMSCreating a temporary table outside a stored procedure will generate the following message:
Error 208: Invalid Object Name '<temp table>'You can encounter this problem when you use the SQL Enterprise Manager option "Manage Stored Procedures."
WORKAROUNDUse a query window to execute scripts containing temporary tables created outside stored procedures.
STATUSMicrosoft has confirmed this to be a problem in Microsoft SQL Server 6.0. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATIONThe following three scenarios define the problem"
Error 208: Invalid Object Name '#t1'NOTE: It does not matter if the table in the create statement is different from the table referenced in the stored procedure. The following returns the same error: create table #t2(a int) go create procedure test as select * from #t1 go create procedure test as select * from #t1 go create table #t1(a int) go
|
Additional query words: sql6 winnt sem sproc
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |