如何修改SQL数据库建表时间

来源:百度知道 编辑:UC知道 时间:2024/06/17 11:25:53
注明,是修改表的创建时间

SQL2000可用更改
SQL2005以后版本不可以改

use master
go
sp_configure 'allow updates',1
go
reconfigure with override
go

update sysobjects set crdate='更新时间' where Name='表名'