サーチ…


高度なオプションを有効にして表示する

Exec sp_configure 'show advanced options' ,1
RECONFIGURE
GO
-- Show all configure
sp_configure

バックアップ圧縮のデフォルトを有効にする

Exec sp_configure 'backup compression default',1
GO  
RECONFIGURE;

デフォルトの塗りつぶし率を設定する

sp_configure 'fill factor', 100;  
GO  
RECONFIGURE;  

変更を有効にするには、サーバーを再起動する必要があります。

システム回復間隔を設定する

USE master;  
GO 
-- Set recovery every 3 min
EXEC sp_configure 'recovery interval', '3';  
RECONFIGURE WITH OVERRIDE;  

cmdのアクセス許可を有効にする

EXEC sp_configure 'xp_cmdshell', 1
GO
RECONFIGURE

最大サーバーメモリサイズを設定する

USE master
EXEC sp_configure 'max server memory (MB)', 64
RECONFIGURE WITH OVERRIDE

チェックポイントタスクの数を設定する

EXEC sp_configure "number of checkpoint tasks", 4


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow