该方法可能会导致严重后果(在objects中可以查到该表,可直接select却提示该object_id不存在)
sp_configure 'allow updates',1
go
reconfigure with override
go
update syscolumns set colstat = colstat & 0x000
where id = object_id('表名') and name = '自增列名'
go
sp_configure 'allow updates',0
go
该方法可能会导致严重后果(在objects中可以查到该表,可直接select却提示该object_id不存在)
sp_configure 'allow updates',1
go
reconfigure with override
go
update syscolumns set colstat = colstat & 0x000
where id = object_id('表名') and name = '自增列名'
go
sp_configure 'allow updates',0
go