Estimate the db files and log file growth

  • can any one suggest how ot estimate the db files and log file size on weekly /monthly basis as we are facing disk space issues

  • Look at the database and log backup size:

    select

    database_name,

    type,

    backup_finish_date,

    backup_size

    from

    msdb.dbo.backupset



    Ole Kristian Velstadbråten Bangås - Virinco - Facebook - Twitter

    Concatenating Row Values in Transact-SQL[/url]

  • Also have a look at the Standard reports in SSMS, right click on your database and select Reports > Standard Reports > Disk Usage.

    Its not perfect but will show you any autogrows that occured on your DB.

    Theres a number of factors where this may be of no use but it's worth a quick look.

    MCITP SQL 2005, MCSA SQL 2012

  • Look at the perfmon counters for SQLServer:Databases -

    Data File(s) Size(KB)

    Log File(s) Size(KB)

    This would show you the growth of your data/log files.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply