在SQL SERVER中提升自己的表为系统表,防止误操作

create table qiubole(did int)

sp_configure  'allow updates', 1

RECONFIGURE WITH OVERRIDE

update sysobjects set xtype = 'S',info = 4
 where id = object_id('qiubole')

sp_configure  'allow updates', 0

RECONFIGURE WITH OVERRIDE  

你可能感兴趣的:(SQL Server)