March 6, 2008 at 2:59 pm
Hi,
I have 'dbo' access on the development server. I'm trying to view TempDB data & log usage, using EM -- View -Taskpad. I do see the 'Transaction Log space' in Taskpad. But not the 'Data'.
Can any one tell me what are the DB access needed to view this detail. FYI, I could see these (Data & Log usage) details in all user databases.
Thank You,
March 6, 2008 at 4:08 pm
It's a bug... turn off task pad by selecting a different kind of view... then, turn it back on. Problem should fix itself. If it doesn't you may have to stop/restart the SQL Server service and try again.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 6, 2008 at 4:17 pm
Jeff,
Thank you for your reply. The Taskpad refresh works for other user databases. But not in TempDB.
Even in TempDB, I could see the Transaction Log usage. The issue is the data usage I do not see.
Thanks,
March 6, 2008 at 6:19 pm
Sure am sorry about that... Task Pad has always been a little quirky in 2k.
If you really want to know those values, try the following
USE TEMPDB
EXEC dbo.sp_HelpFile
EXEC dbo.sp_SpaceUsed
--Jeff Moden
Change is inevitable... Change for the better is not.
March 7, 2008 at 10:44 am
Thank You again Jeff.
I tried to monitor the temp db size using sp_spaceused. The 'Unallocated Space' value is static when the query is running. It is supposed to change when the TempDB gets full.
Any help is appreciated.
Thank You,
March 7, 2008 at 11:42 am
You may have to do a DBCC UPDATEUSAGE on TempDB just before the sp_SpaceUsed to get that to change...
--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