通过 执行以下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