Microsoft SQL Server
Geavanceerde mogelijkheden
Zoeken…
Schakel geavanceerde opties in en toon deze
Exec sp_configure 'show advanced options' ,1
RECONFIGURE
GO
-- Show all configure
sp_configure
Schakel standaard back-upcompressie in
Exec sp_configure 'backup compression default',1
GO
RECONFIGURE;
Stel het standaard vulfactorpercentage in
sp_configure 'fill factor', 100;
GO
RECONFIGURE;
De server moet opnieuw worden gestart voordat de wijziging van kracht kan worden.
Stel het systeemherstelinterval in
USE master;
GO
-- Set recovery every 3 min
EXEC sp_configure 'recovery interval', '3';
RECONFIGURE WITH OVERRIDE;
Schakel cmd-toestemming in
EXEC sp_configure 'xp_cmdshell', 1
GO
RECONFIGURE
Stel de maximale servergeheugengrootte in
USE master
EXEC sp_configure 'max server memory (MB)', 64
RECONFIGURE WITH OVERRIDE
Stel het aantal controlepunttaken in
EXEC sp_configure "number of checkpoint tasks", 4
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow