MS-SQL 서버 메모리 사용량 제한

윈도우즈/MSSQL|2015. 1. 27. 09:26
반응형

*메모리 최대치 제한 쿼리

 

/*
exec sp_configure 'show advanced option', '1'
reconfigure
go

 

exec sp_configure 'awe enabled', '1'
reconfigure
go

 

exec sp_configure 'max server memory', 1500    // 약 1.5G (정확히 하시려면 1024*1.5를 하세요)
reconfigure
go
*/

 

[출처] OK! Programming (http://okprogramming.com/MSSQL/3209)

반응형

댓글()