March 6, 2007 at 6:24 pm
Space information is not maintained in real-time but only when indicies are rebuild or "dbcc updateusage" is run.
"dbcc updateusage" can be also be invoked by running:
exec sp_spaceused @updateusage = 'true'
SQL = Scarcely Qualifies as a Language
March 6, 2007 at 10:11 pm
March 7, 2007 at 5:05 am
remember the transaction log may grow when indexs are being rebuilt
March 7, 2007 at 10:08 am
I have seen this also and used the solution Carl suggests. Just run DBCC UPDATEUSAGE ('dbname')
-SQLBill
March 7, 2007 at 1:21 pm
Thanks Carl and Bill - sounds like that is the solution.
March 8, 2007 at 5:53 pm
Will sp_msforeachdb @command1='dbcc updateusage (''?'')' cause log growth?
Viewing 6 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply