问个搞笑问题~ 如何修改数据库创建时间?

时间:2022-07-23 07:23:18
呵呵~我感觉这个问题很简单~但是就是找不到方法 请指教

15 个解决方案

#1


sp_configure 'allow updates',1
reconfigure with override
go
update sysobjects set crdate='2006-05-10' where id=object_id('tablename')
go
sp_configure 'allow updates',1
reconfigure with override

#2


sp_configure 'allow updates',1
reconfigure with override
go
update sysobjects set crdate='2006-05-10' where id=object_id('tablename')
go
sp_configure 'allow updates',0
reconfigure with override

#3


第二个是 0

#4


是数据库 不是表的创建时间

#5


哦,等一下,没看好

#6


use master
go
sp_configure 'allow updates',1
reconfigure with override
go
update sysdatabases set crdate='2006-05-10' where name='test'
go
sp_configure 'allow updates',1
reconfigure with override

#7


use master
go
sp_configure 'allow updates',1
reconfigure with override
go
update sysdatabases set crdate='2006-05-10' where name='databasename'
go
sp_configure 'allow updates',1
reconfigure with override

#8


谢谢拉!! 你好强哦~ 我也学数据库~这些代码都在哪找的?联机丛书里吗?

#9


不是的,错了,又错了
第二个是0又写成1,真不好意思

#10


lxzm1001(*蓝星之梦*) 真强,向他学习

#11


我是好菜的,不强一点也不。

#12


呵呵,楼上谦虚了:)共同学习,一起进步

#13


没有谦虚了,不过真的是共同学习,一起进步了。呵呵

#14


 我刚刚修改成功了,很兴奋,O(∩_∩)O哈哈~。现在我把我的代码贴过来啊 。这些代码只要在sql 2000的查询分析器里执行就好了
sp_configure 'allow updates',1
go
reconfigure with override
go
use shopdatabase 
go
update sysobjects set crdate= '2010-5-20 21:09:10' where name ='categories'
go
sp_configure 'allow updates',0
go
reconfigure with override
go

说明:shopdatabase 是要修改的数据库的名称;2010-5-20 21:09:10 是要修改成的时间;
     categories 是要修改的表的名称。
直接修改数据库的创建时间还不会啊,我们就直接一个个修改每个表的时间啊,想想啊,本来每个表的创建时间就不一样的,直接修改数据库的时间会不会太假了呢。

#15


呵呵,我似乎都看不懂,差距好远哦,慢慢学习,呵呵

#1


sp_configure 'allow updates',1
reconfigure with override
go
update sysobjects set crdate='2006-05-10' where id=object_id('tablename')
go
sp_configure 'allow updates',1
reconfigure with override

#2


sp_configure 'allow updates',1
reconfigure with override
go
update sysobjects set crdate='2006-05-10' where id=object_id('tablename')
go
sp_configure 'allow updates',0
reconfigure with override

#3


第二个是 0

#4


是数据库 不是表的创建时间

#5


哦,等一下,没看好

#6


use master
go
sp_configure 'allow updates',1
reconfigure with override
go
update sysdatabases set crdate='2006-05-10' where name='test'
go
sp_configure 'allow updates',1
reconfigure with override

#7


use master
go
sp_configure 'allow updates',1
reconfigure with override
go
update sysdatabases set crdate='2006-05-10' where name='databasename'
go
sp_configure 'allow updates',1
reconfigure with override

#8


谢谢拉!! 你好强哦~ 我也学数据库~这些代码都在哪找的?联机丛书里吗?

#9


不是的,错了,又错了
第二个是0又写成1,真不好意思

#10


lxzm1001(*蓝星之梦*) 真强,向他学习

#11


我是好菜的,不强一点也不。

#12


呵呵,楼上谦虚了:)共同学习,一起进步

#13


没有谦虚了,不过真的是共同学习,一起进步了。呵呵

#14


 我刚刚修改成功了,很兴奋,O(∩_∩)O哈哈~。现在我把我的代码贴过来啊 。这些代码只要在sql 2000的查询分析器里执行就好了
sp_configure 'allow updates',1
go
reconfigure with override
go
use shopdatabase 
go
update sysobjects set crdate= '2010-5-20 21:09:10' where name ='categories'
go
sp_configure 'allow updates',0
go
reconfigure with override
go

说明:shopdatabase 是要修改的数据库的名称;2010-5-20 21:09:10 是要修改成的时间;
     categories 是要修改的表的名称。
直接修改数据库的创建时间还不会啊,我们就直接一个个修改每个表的时间啊,想想啊,本来每个表的创建时间就不一样的,直接修改数据库的时间会不会太假了呢。

#15


呵呵,我似乎都看不懂,差距好远哦,慢慢学习,呵呵