sql server 2000 修改系统表方法

 

--以下修改的是所有用户表的创建日期。如果运行有问题,请一条一条运行。

--打开修改系统表的开关  
  EXEC   sp_configure   'allow updates',1     RECONFIGURE   WITH   OVERRIDE  
   
  --修改系统表  
  update  sysobjects set crdate='2010-05-09 10:00:00.666' where xtype='U'
  go  
   
  --修改后关闭修改系统表的开关  
  EXEC   sp_configure   'allow updates',0     RECONFIGURE   WITH   OVERRIDE  
  go  

select crdate from sysobjects where xtype='U'

转载于:https://www.cnblogs.com/umen/archive/2010/05/05/1727741.html

你可能感兴趣的:(sql server 2000 修改系统表方法)