手机
当前位置:查字典教程网 >编程开发 >mssql数据库 >SQL Server 2005的cmd_shell组件的开启方法
SQL Server 2005的cmd_shell组件的开启方法
摘要:SQLServer中的cmd_shell组件功能强大,几乎可通过该组建实现Windows系统的所有功能,正因此,这个组件也是SQLServe...

SQL Server中的cmd_shell组件功能强大,几乎可通过该组建实现Windows系统的所有功能,正因此,这个组件也是SQL Server的最大安全隐患。SQL Server 2000中这个组件是默认开启的,而SQL Server 2005中这个组件默认作为此服务器安全配置的一部分而被关闭。有时我们需要用到该组件,开启此组件的相关语句如下:

复制代码 代码如下:

--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 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', 0

GO

--To update the currently configured value for this feature.

RECONFIGURE

GO

【SQL Server 2005的cmd_shell组件的开启方法】相关文章:

Sql server2005 优化查询速度50个方法小结

SQL Server四类数据仓库建模方法

SQL Server2005打开数据表中的XML内容时报错的解决办法

SQLServer2005 评估和管理索引

SQL Server的ldf和mdf文件转移

SQL Server 2005 返回修改后的数据

SQLserver 2005文件和文件组的作用说明

例说SQLServer2008聚合函数

SQL Server 2005删除日志文件的几种方法小结

SQL Server 日志文件清理

精品推荐
分类导航