xp_cmdshell 的开启和关闭
Posted 晴天MM
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xp_cmdshell 的开启和关闭相关的知识,希望对你有一定的参考价值。
由于存在安全隐患,所以在SQL Server中, xp_cmdshell 默认是关闭的。
exec sp_configure ‘show advanced options‘,1
reconfigure
go
exec sp_configure ‘xp_cmdshell‘,0
reconfigure
go
exec sp_configure ‘show advanced options‘,1
reconfigure
go
exec sp_configure ‘xp_cmdshell‘,1
reconfigure
go
以上是关于xp_cmdshell 的开启和关闭的主要内容,如果未能解决你的问题,请参考以下文章
BCP SQL导出EXCEL常见问题及解决方法;数据导出存储过程
SQL 不常用的一些命令sp_OACreate,xp_cmdshell,sp_makewebtask
SQL Server 阻止了对组件“xp_cmdshell”的 过程“sys.xp_cmdshell”的访问,因为此组件已作为此服务器安全配置的一部分而被关闭。