October 18, 2011 at 4:49 pm
Hi Friends,
I'm running the following script
select mo.type
, sum(mo.pages_allocated_count * mo.page_size_in_bytes/1024) AS N'Current KB'
, sum(mo.max_pages_allocated_count * mo.page_size_in_bytes/1024) AS N'Max KB'
from sys.dm_os_memory_objects mo
where mo.[type] like '%clr%'
group by mo.type
order by mo.type
And what i'm seeing is MEMOBJ_SQLCLR_CLR_EE increases gradually but steadily wih no sign of easing. As we have had MTL issues i'm wondering if this could be a possible cause? What is MEMOBJ_SQLCLR_CLR_EE??
Many thanks 🙂
Mr J 🙂
Remember
Without Change something sleeps inside of us that seldom awakens, the sleeper must awaken!!
October 18, 2011 at 11:58 pm
I do not know how far the below link would help you. Please refer the same.
http://social.msdn.microsoft.com/Forums/en/sqlnetfx/thread/9afded55-72ae-49eb-b7c3-f2ab491f93c9
October 19, 2011 at 12:03 am
Funny enough I have already come across this thread but still thanks for the post.. unfortunately it doesnt really give any clues to my question. I wanna know what MEMOBJ_SQLCLR_CLR_EE is and how if possible query what it is made up of.
Cheers 🙂
Remember
Without Change something sleeps inside of us that seldom awakens, the sleeper must awaken!!
October 19, 2011 at 12:42 am
October 19, 2011 at 12:46 am
October 19, 2011 at 7:18 am
After an extensive googling out, I could only relate this with Execution Engine of CLR at the time of GC.
October 19, 2011 at 4:04 pm
Thanks hunt for the links, I've been googling my brains out and their isn't much around for MEMOBJ_SQLCLR_CLR_EE. I'll keep on digging and if i found anything interesting I'll update you guys.
Thanks for your support
Mr J 🙂
Remember
Without Change something sleeps inside of us that seldom awakens, the sleeper must awaken!!
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply