Microsoft SQL Server
Opciones avanzadas
Buscar..
Habilitar y mostrar opciones avanzadas
Exec sp_configure 'show advanced options' ,1
RECONFIGURE
GO
-- Show all configure
sp_configure
Habilitar compresión de respaldo por defecto
Exec sp_configure 'backup compression default',1
GO
RECONFIGURE;
Establecer el porcentaje de relleno predeterminado
sp_configure 'fill factor', 100;
GO
RECONFIGURE;
El servidor debe reiniciarse antes de que el cambio surta efecto.
Establecer intervalo de recuperación del sistema
USE master;
GO
-- Set recovery every 3 min
EXEC sp_configure 'recovery interval', '3';
RECONFIGURE WITH OVERRIDE;
Habilitar permiso cmd
EXEC sp_configure 'xp_cmdshell', 1
GO
RECONFIGURE
Establecer el tamaño máximo de memoria del servidor
USE master
EXEC sp_configure 'max server memory (MB)', 64
RECONFIGURE WITH OVERRIDE
Establecer el número de tareas de punto de control
EXEC sp_configure "number of checkpoint tasks", 4
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow