Article ID: 115333
Article Last Modified on 2/22/2005
BUG #: 10215 (4.21a) BUG #: 16652 (SQLBUG_65) BUG #: 57903 (SQLBUG_70) BUG #: 56127 (SHILOH)
create table testx (c int)
go
create procedure procx as select * from testx
go
select name, id from sysobjects where (name = "testx")
or (name = "procx")
go
name id ----------------------------- ---------- testx 464004684 procx 480004741
drop table testx go create table testx (c int) go select id from sysobjects where name = "testx"
id ----------- 512004855
select id, depid from sysdepends where id = 480004741
id depid ---------- ---------- 480004741 464004684
Additional query words: Windows NT
Keywords: kbbug KB115333