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