当作为 sysadmin 固定服务器角色成员的用户唤醒调用 xp_cmdshell 时,将在运行 sql server 服务的安全上下文中执行 xp_cmdshell。当用户不是 sysadmin 组的成员时,xp_cmdshell 将模拟使用 xp_sqlagent_proxy_account 指定的 sql server 代理程序的代理帐户。如果代理帐户不能用,则 xp_cmdshell 将失败。这只是针对于 microsoft® windows nt® 4.0 和 windows 2000。在 windows 9.x 上,没有模拟,且 xp_cmdshell 始终在启动 sql server 的 windows 9.x 用户的安全上下文下执行。
说明 在早期版本中,获得 xp_cmdshell 执行权限的用户在 mssqlserver 服务的用户帐户上下文中运行命令。可以通过配置选项配置 sql server,以便对 sql server 无 sa 访问权限的用户能够在 sqlexecutivecmdexec windows nt 帐户的上下文中运行 xp_cmdshell。在 sql server 7.0 中,该帐户称为 sqlagentcmdexec。现在,不是 sysadmin 固定服务器角色成员的用户将在该帐户上下文中运行命令,而无需再进行配置更改。
重要 如果为 mssqlserver 服务选用的 windows nt 帐户不是本地管理员组的成员,则非 sysadmin 固定服务器角色成员的用户将无法执行 xp_cmdshell。
示例a. 返回可执行文件列表 下例显示执行目录命令的 xp_cmdshell 扩展存储过程。
exec master..xp_cmdshell 'dir *.exe' b. 使用 windows nt net 命令 下例显示 xp_cmdshell 在存储过程中的使用。下例先用 net send 通知用户 sql server 即将关闭,然后用 net pause 暂停服务器,最后用 net stop 关闭服务器。
create proc shutdown10asexec xp_cmdshell 'net send /domain:sql_users ''sql server shutting down in 10 minutes. no more connections allowed.', no_outputexec xp_cmdshell 'net pause sqlserver'waitfor delay '00:05:00'exec xp_cmdshell 'net send /domain: sql_users ''sql server shutting down in 5 minutes.', no_outputwaitfor delay '00:04:00'exec xp_cmdshell 'net send /domain:sql_users ''sql server shutting down in 1 minute. log off now.', no_outputwaitfor delay '00:01:00'exec xp_cmdshell 'net stop sqlserver', no_output c. 不返回输出 下例使用 xp_cmdshell 执行命令字符串,且不向客户端返回输出。
use masterexec xp_cmdshell 'copy c: qldumps/pubs.dmp / erver2/backups qldumps', no_output d. 使用返回状态 在下例中,xp_cmdshell 扩展存储过程也给出了返回状态。返回代码值存储在变量 @result 中。