Databases out of space, but not really

  • 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

  • have u checked the growth settings..

    whether the Maximum filegrowth is set to

        1.Restrticted grow

        2.Unlimited growth

     


    Thanks ,

    Shekhar

  • remember the transaction log may grow when indexs are being rebuilt

  • I have seen this also and used the solution Carl suggests. Just run DBCC UPDATEUSAGE ('dbname')

    -SQLBill

  • Thanks Carl and Bill - sounds like that is the solution.

  • 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