通過 執(zhí)行以下SQL語句能夠將數(shù)據(jù)庫創(chuàng)建時間進行修改
use database DBName
sp_configure 'allow updates',1
reconfigure with override
go
update sysobjects set crdate='2007-05-30' where id=object_id('表名')
go
sp_configure 'allow updates',0
reconfigure with override