Microsoft SQL Server
고급 옵션
수색…
고급 옵션 사용 및 표시
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