This commit is contained in:
2024-03-28 13:45:35 +01:00
parent 230e7c05d7
commit 261a8832c4
4 changed files with 132 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ DECLARE @isX64 BIT = 1;
DECLARE @ThreadStackSize INT;
DECLARE @osReserved INT;
DECLARE @newMaxMem INT;
DECLARE @appReserved INT = 0*1024*1024; --memory reserved for other apps on the server in Kb
DECLARE @appReserved INT = 4*1024*1024; --memory reserved for other apps on the server in Kb
SELECT @totSysMemKb = [total_physical_memory_kb]
FROM [sys].[dm_os_sys_memory];