默认情况下,sql server2005安装完后,xp_cmdshell是禁用的(可能是安全考虑),如果要使用它,可按以下步骤
-- 允许配置高级选项
exec sp_configure 'show advanced options', 1
go
-- 重新配置
reconfigure
go
-- 启用xp_cmdshell
exec sp_configure 'xp_cmdshell', 1
go
--重新配置
reconfigure
go
--执行想要的xp_cmdshell语句
exec xp_cmdshell 'xcopy .......'
go
--用完后,要记得将xp_cmdshell禁用(出于安全考虑)
-- 允许配置高级选项
exec sp_configure 'show advanced options', 1
go
-- 重新配置
reconfigure
go
-- 禁用xp_cmdshell
exec sp_configure 'xp_cmdshell', 0
go
--重新配置
reconfigure
go
本文介绍如何在 SQL Server 2005 中启用和禁用 xp_cmdshell 扩展存储过程。通过配置高级选项并重新配置服务来实现启用和禁用操作。此外还提供了执行 xp_cmdshell 的示例语句。
2373

被折叠的 条评论
为什么被折叠?



