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

--打开修改系统表的开关  
  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'

 posted on 2010-05-05 10:08  umen  阅读(349)  评论(0编辑  收藏  举报