SQL Server 2005 2208 xp_cmdshell存儲(chǔ)過程 默認(rèn)禁用了,用下面的語句可以打開和禁用。
摘要: --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
<
閱讀全文