March 13, 2008 at 2:13 pm
A while ago I found an undocumented DBCC command for sql2k, having a parameter "n" and showing up the first "n" objects in the cache (but in clear, not like DBCC MEMUSAGE), but I really can't remember it. Can anybody help me please?
March 14, 2008 at 11:27 pm
Please ... Maybe it was a stored procedure, I am not exactly sure ... but it has a parameter (whatever - DBCC or stored procedure) that means
something like "show me the first "n" objects" in the cache. And I am 100% sure it is working in Sql Server 2000
March 16, 2008 at 6:36 pm
You're probably looking for the data in table master.dbo.syscacheobjects
_____________
Code for TallyGenerator
March 16, 2008 at 9:16 pm
Dunno if it's any of these... see attached... might be DBCC Buffer or DBCC ProcBuf.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2008 at 5:15 pm
After a pretty long search I have just found what I was looking for ...
It is :
DBCC MEMUSAGE (names,100) for ex shows up the first 100 objects in the cache with their name in clear 🙂
Quite helpful for me ...
Thank you!
Virgil Rucsandescu
March 17, 2008 at 6:10 pm
Thanks for posting the solution, Virgil...
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply