本文主要是介绍Mssql2005如何启用xp_cmdshell,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
默认情况下,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
这篇关于Mssql2005如何启用xp_cmdshell的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!