Hi All,
I have a very simple doubt which seems very difficult to find on msdn literature.
This query gives me awe_allocated_kb column and lists all memory resources in SQL Server, right?
SELECT * FROM sys.dm_os_memory_clerks
Being it a column in a list give me a strong feeling that I can distribute awe memory for different memory buckets, right? All my humble 10485760 kb is allocated to 'MEMORYCLERK_SQLBUFFERPOOL'.
I'd like for instance to add some memory to 'MEMORYCLERK_SQLQUERYEXEC'.
How can I achieve that? It seems to be a simple thing with SQL 2008 resource governor, but I'm lost on SQL 2005.
Thanks a lot in advance.
Lucas