博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL Server 2005 2008 xp_cmdshell 恢复与禁用
阅读量:6338 次
发布时间:2019-06-22

本文共 1133 字,大约阅读时间需要 3 分钟。

 SQL Server 2005 2208 xp_cmdshell存储过程  默认禁用了,用下面的语句可以打开和禁用。

--SQL语句开xp_cmdshell

-- To allow advanced options to be changed.
EXEC sp_configure 'show advanced options', 1
GO
-- To update the currently configured value for advanced options.
RECONFIGURE
GO
-- To enable the feature.
EXEC sp_configure 'xp_cmdshell', 1
GO
-- To update the currently configured value for this feature.
RECONFIGURE
GO
-- To disallow advanced options to be changed.
EXEC sp_configure 'show advanced options', 0
GO
-- To update the currently configured value for advanced options.
RECONFIGURE
GO
--如果要禁用,
-- To allow advanced options to be changed.
EXEC sp_configure 'show advanced options', 1
GO
-- To update the currently configured value for advanced options.
RECONFIGURE
GO
-- To disable the feature.
EXEC sp_configure 'xp_cmdshell', 0
GO
-- To update the currently configured value for this feature.
RECONFIGURE
GO
-- To disallow advanced options to be changed.
EXEC sp_configure 'show advanced options', 0
GO
-- To update the currently configured value for advanced options.
RECONFIGURE
GO

转载于:https://www.cnblogs.com/root7/archive/2012/03/12/2391497.html

你可能感兴趣的文章
MySQL数据库备份和还原的常用命令小结
查看>>
一文读懂 Spring Data Jpa!
查看>>
仿iphone动态萤火虫锁屏应用源码
查看>>
vmware虚拟机安装ghost版xp-黑屏错误及解决方法
查看>>
每次打开office2010都说“正在配置office2010.......”
查看>>
Linux下删除文件为何空间不释放
查看>>
AirTight C-65 AP
查看>>
15个开发者最亲睐的Android代码编辑器
查看>>
html web 简单打印
查看>>
Quartz2D打水印
查看>>
分布式事物方案前-BASE理论的介绍
查看>>
在商业项目中使用JDK?
查看>>
Groovy使用List集合
查看>>
PXE自动化安装CentOS 7
查看>>
网络安全与防火墙
查看>>
centos7.2下安装haproxy1.7
查看>>
MySQL/MariaDB DML操作之Select
查看>>
Spring Security 3.1.1安全控制的例子(二)
查看>>
设计模式之-工厂方法
查看>>
python学习笔记---字典
查看>>