通過(guò) 執(zhí)行以下SQL語(yǔ)句能夠?qū)?shù)據(jù)庫(kù)創(chuàng)建時(shí)間進(jìn)行修改
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