SQL Server 2008 memory bottlenecks
2 answers
report memory usage by current memory processes
This is too general and cannot be answered. Almost all memory in SQL is shared between "processes" (queries) and cannot be categorized as separate. The only significant memory consumption that can be explicitly related to the request is the memory grant that maps to sys.dm_exec_query_memory_grants
. I recommend you read Buffer Management as well .
+4
source to share