Microsoft SQL Server
Avancerade alternativ
Sök…
Aktivera och visa avancerade alternativ
Exec sp_configure 'show advanced options' ,1
RECONFIGURE
GO
-- Show all configure
sp_configure
Aktivera standardkompression för säkerhetskopiering
Exec sp_configure 'backup compression default',1
GO
RECONFIGURE;
Ställ in standardfyllnadsfaktorprocent
sp_configure 'fill factor', 100;
GO
RECONFIGURE;
Servern måste startas om innan ändringen kan träda i kraft.
Ställ in systemåterställningsintervall
USE master;
GO
-- Set recovery every 3 min
EXEC sp_configure 'recovery interval', '3';
RECONFIGURE WITH OVERRIDE;
Aktivera cmd-tillstånd
EXEC sp_configure 'xp_cmdshell', 1
GO
RECONFIGURE
Ställ in maximalt serverminne
USE master
EXEC sp_configure 'max server memory (MB)', 64
RECONFIGURE WITH OVERRIDE
Ställ in antal kontrollpunkter
EXEC sp_configure "number of checkpoint tasks", 4
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow