程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> SQL Server 2005 裡設置使用xp_cmdshell

SQL Server 2005 裡設置使用xp_cmdshell

編輯:關於SqlServer


  SQL Server 2005 中引入的 xp_cmdshell 選項是服務器配置選項,使系統管理員能夠控制是否可以在系統上執行 xp_cmdshell 擴展存儲過程。

  默認情況下,xp_cmdshell 選項在新安裝的軟件上處於禁用狀態,但是可以通過使用外圍應用配置器工具或運行 sp_configure 系統存儲過程來啟用它,如下面的代碼示例所示:

-- 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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved