Control SQL Server CLR Reserved Memory -
I have recently enabled CLR on my 64 bit SQL Server 2005 machine for using about 3 procs. When I use the memory ...
select single_pages_kb + multi_pages_kb + virtual_memory_committed_kb TotalMemoryUsage, as virtual_memory_reserved_kb the sys.dm_os_memory_clerks where type = 'MEMORYCLERK_SQLCLR'I get
12 9 Memoriugej MB and 6.3 GB of virtual memory reserved
the total memory of the machine is 21 Gig. What does reserved virtual memory mean and how can I control the size allocated? 6 gig is overkill for what we are doing, and memory will be used better by spray cache. I'm worried that this will cause the reserved archive page to be swiped.
Please help me withdraw control of memory!
Thank you
You are running 64 bit, so VAS (virtual memory) There is a non-issue.
Virtual memory is not actually used, or allocated it has reserved only the address range.
Comments
Post a Comment