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