怎么样修改sql server 2000数据库中,表的创建时间

如题所述

---现要把表名为inv80200 的建立日期改为'2004-01-01'
方法如下:
use master
sp_configure 'allow updates',1 reconfigure with override

---------9、设置资料库 故障查询 为 正常 模式------

select refdate,*from sysobjects where name='inv80200'

update sysobjects set crdate='2004-01-01' where name='inv80200'

sp_dboption 'p3','dbo use only','false'
--------10、取消资料库直接作业系统表--------
sp_configure 'allow updates',0
reconfigure with override
温馨提示:答案为网友推荐,仅供参考
相似回答