当前位置:数据库 > SQLServer >>

怎么修改SQL server 2005数据库的系统时间

但反过来,如果用双击时间出现的"日期和时间属性面板"中修改了计算机时间,是不会修改到sql server时间的

 代码如下 复制代码

--修改前时间
select getdate()

--打开高级系统控制选项
EXEC master.dbo.sp_configure 'show advanced options', 1 RECONFIGURE

--修改执行权限,这样就可以执行修改时间的命令了
EXEC master.dbo.sp_configure 'xp_cmdshell', 1 RECONFIGURE

--修改系统时间
exec master..xp_cmdshell 'date 2008-10-23'
exec master..xp_cmdshell 'time 11:30:15'

--修改后时间
select getdate()

--与数据库所在计算机的时间同步
exec master.dbo.xp_cmdshell 'net time \localhost /set  /Y' 

--同步后时间
select getdate()

补充:数据库,Mssql
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,