T-SQL打开一项外围配置

//查看外围配置情况
SELECT * FROM sys.configurations ORDER BY name ;
GO
//show advanced options 选项用来显示 sp_configure 系统存储过程高级选项。当 show advanced //options 设置为 1 时,可以使用 sp_configure 列出高级选项。默认值为 0。
sp_configure 'show advanced options', 1;
GO
//重启服务
reconfigure;
GO
//更改的配置选项的当前已配置值
sp_configure 'xp_cmdshell', 1;
GO
//重启服务
reconfigure;
GO

作者: 璇玑CTO   发布时间: 2011-11-25

看看,不是很懂,但是还是要感谢分享

作者: a490495735   发布时间: 2011-11-30