例項名database enginexp_cmdshell—>
啟用 2.sp_configure
-- 允許配置高階選項
exec sp_configure 'show advanced options', 1
go -- 重新配置
reconfigure
go -- 啟用xp_cmdshell
exec sp_configure 'xp_cmdshell', 0
go --重新配置
reconfigure
go --執行想要的xp_cmdshell語句
exec xp_cmdshell 'query user'
go --用完後,要記得將xp_cmdshell禁用(從安全角度安全考慮)
-- 允許配置高階選項
exec sp_configure 'show advanced options', 1
go -- 重新配置
reconfigure
go -- 禁用xp_cmdshell
exec sp_configure 'xp_cmdshell', 1
go --重新配置
reconfigure
go使用 sp_configure 時,必須在設定乙個配置選項後執行 reconfigure 或者 reconfigure with override。reconfigure with override 語句通常專門用來設定那些使用起來應當十分小心的配置選項。但是,reconfigure with override 可用於所有的配置選項,並且可以用它代替 reconfigure。
每個選項的值都可使用以下語句確定。
select * from sys.configurations
order by name ;
go若要用 sp_configure 配置高階選項,必須首先在 "show advanced options" 選項設定為 1 的情況下執行 sp_configure,然後執行 reconfigure:
sp_configure 'show advanced options', 1;
goreconfigure;
gosp_configure 'cursor threshold', 0;
goreconfigure;
goexec sp_configure 'show advanced options',1
goreconfigure;
goexec sp_configure 'ad hoc distributed queries',1
goreconfigure;
go
資料庫PostrageSQL 預置選項
下列 引數 是唯讀的,它們是在編譯或安裝postgresql時決定的。同樣,它們被排除在postgresql.conf檔案例子之外。這些選項報告特定應用可能感興趣的多種postgresql行為,特別是管理前端相關的行為。block size integer 報告乙個磁碟塊的大小。它由編譯伺服器時bl...
Spring 配置JDBC 最常用資料庫配置
最常用配置 initialpoolsize 連線池初始化時建立的連線數,default 3,取值應在minpoolsize與maxpoolsize之間 c3p0.initialpoolsize 10 minpoolsize 連線池保持的最小連線數,default 3 c3p0.minpoolsize...
ODOO12資料庫選項
進行 odoo 開發時,經常會使用多個資料庫,有時還會用到不同版本。在同一埠上停止 啟動不同服務例項,或在不同資料庫間切換,會導致網頁客戶端會話異常。因為瀏覽器會儲存會話的 cookie。home tderp conda envs odoo12 odoo dev odoo odoo bin 不過濾資...