Windows DB

*메모리 최대치 제한 쿼리

 

/*
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
*/