July 16, 2008 at 3:12 am
I need to find out the number of reads and writes , sizes and other such info on tables ( try to identify largest, most heavily read, and most heavily modified tables)
what system tables/views/functions i can use to get this info?
July 16, 2008 at 3:41 am
theres is kinda a ton of them best to check bol for the dynamic management views
July 16, 2008 at 4:12 am
checked that already, there is only index info in the dmv's, but nothing for table size. all i can find to determine tablesize is sp_spaceUsed, but id much rather find if the data is in a DMV/DMF.
July 16, 2008 at 4:34 am
true that there is only a system view for index size and sp_spaceused the only way to determine the table size itself
July 16, 2008 at 5:26 am
what about for table reads and writes? again, im aware of read and write info for indexes in the DMV's, but not for the actual table.
i could write a query to link tables up to indexes and get index usage, but what if there are queries running that dont use an index?
July 16, 2008 at 7:20 am
don't know of a way there only down to database file level for everything more detailed I guess you have to buy some additional software if there is any even providing this kind of information before going straight down the query level.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply