sql 执行完语句后自动关机(在线等)!
sql 执行完语句后自动关机(在线等)!
我有一条语句,执行需要很长时间,能不能加条语句让它执行完后自动关机。
谢谢!
------解决方案--------------------
------解决方案--------------------开启xp_cmdshell
SQL code
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE;
EXEC sp_configure 'xp_cmdshell', 1;
RECONFIGURE;
------解决方案--------------------
------解决方案--------------------
最后运行
SQL code
sp_configure 'show advanced options',0
go
reconfigure
go