查询数据库的补丁版本
select serverproperty('productlevel')
修改数据库建表时间
sp_configure 'allow updates',1
reconfigure with override
go
update sysobjects set crdate='2010-05-01'-- where id=object_id('表名')
go
sp_configure 'allow updates',0reconfigure with override