如何利用脚本文件来控制SQL Agent服务的运行?
如何利用脚本文件来控制SQL Agent服务的运行?
1.在查询分析器理启动或停止SQL Agent服务*
{*--启动SQL Agent服务,下面的方法同样可以通过命令行来执行--}
use master
go
xp_cmdshell 'net start SQLSERVERAGENT'
{*--停止SQL Agent服务--}
use master
go
xp_cmdshell 'net stop SQLSERVERAGENT'
{*--将服务的启动从手工方式改为自动启动方式,关于SCM的用法可以通过命令输入SCM来获取--}
exec xp_cmdshell 'scm -action 7 -service SQLSERVERAGENT -svcstarttype 2'
1.在查询分析器理启动或停止SQL Agent服务*
{*--启动SQL Agent服务,下面的方法同样可以通过命令行来执行--}
use master
go
xp_cmdshell 'net start SQLSERVERAGENT'
{*--停止SQL Agent服务--}
use master
go
xp_cmdshell 'net stop SQLSERVERAGENT'
{*--将服务的启动从手工方式改为自动启动方式,关于SCM的用法可以通过命令输入SCM来获取--}
exec xp_cmdshell 'scm -action 7 -service SQLSERVERAGENT -svcstarttype 2'
评论
发表评论