DB check and increase the available size

  • Are your databases in Full recovery model? If they are, have you taken any log backups?

  • the recovery model is simple and it takes full backup

  • Hi,

    is the mdf bigger, or the ldf file?

    Can you check you scheduler, if there are some maintenance jobs like index-rebuild? Is there some replication, or mirroring?

    What is the result of

    dbcc sqlperf (logspace)

    Kind regards,

    Andreas

  • Data is going to grow. You need to be prepared for that. If you want to monitor what's happening on a database, the best tool is extended events. However, you have to set it up ahead of time. You can't retroactively go back in time to figure what happened when you didn't have monitoring set up.

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • +1 for Grant's note. You will see data growth, which sometimes is unexpected. New indexes can account for this, loads, ETL, etc.

    Extended Events will help, but it can be a lot of data to go through.

    However do implement some kind of monitoring to look at whether you are growing from data, logs, or something else.

Viewing 5 posts - 1 through 6 (of 6 total)

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