Why SHRINKFILE is a very bad thing, and what to do about it.

  • Comments posted to this topic are about the item Why SHRINKFILE is a very bad thing, and what to do about it.

  • hi

    Does dbccshinkfile( 'filename',mb) wll take care of fragmentation

  • Simon Facer (11/8/2010)


    Comments posted to this topic are about the item <A HREF="/articles/SHRINKFILE/71414/">Why SHRINKFILE is a very bad thing, and what to do about it.</A>

    Hi Simon,

    Thanks for such a nice explaination. I have some diffrent case hope you will give suggestion for this.

    I did logShipping for a large database now the file size increased vastly so i have used shirnkfile with truncate only option so that my logshipping will not disturb. but size of ldf file increase up to 40 to 60 GB.

    Any idea or guidance to reduce the file size without affecting LogShipping.

    Thanks

    Raj

  • In an effort to curb the necessity of shrinking, I have always taken a few steps whenever setting up a DB:

    1.) Always separate by partition (or even physical disk and controller) the three key portions of a database; Data, indexes, and logs. Also, if you have the resources, put the tempdb on a separate partition; This can frequently be the culprit of disk space issues, and the only way to shrink is a restart of the SQL Server.

    2.) Using the separated partition schema, build a secondary file and file group in the DB, intended strictly for indexes. When building any nonclustered indexes, always build them to this filegroup. CAUTION: If you make the mistake of building a primary key or clustered index to your "Indexes" file group, you will not only build the index there, but will also cause all data in the object the index is built on to move into the secondary file group.

    3.) Build two ldf files on any DB running in a "Full" Recovery model. The first file is set at a fixed size with no auto-growth allowed, and the second is configured very small, but with auto-growth allowed. Monitor your logs through a full business cycle, and you will have an idea how large your fixed file should be resized to. When you see the second log file begin to grow again, you know that your transaction load has increased, and the fixed file needs to grow again.

    As a side note that applies to all of this, when configuring auto-growth, I would always recommend using a fixed MB as opposed to a percentage, and further, make sure that your fixed MB growth size is divisible by 8KB (This is the size of a single SQL I/O write). This should prevent page segmentation due to auto-growths.

    Just my two cents, but in my experience, having everything distributed and compartmentalized like this makes managing growth of a DB much less cumbersome, and also has a positive impact on performance.

    Josh Lewis

  • Simon,

    Just as an FYI, Microsoft has depreciated the TRUNCATE_ONLY option in SQL 2008, and you have to use a different option in the BACKUP LOG command:

    BACKUP LOG <database> TO DISK='NUL:'

    There is an upside, but also a huge risk. The upside is after the backup to DISK='NUL:', you will not receive the log backup failures until a new full backup is taken. The huge risk is that log backups will continue to succeed, but you will lose the ability to recover within the timeframe the DISK='NUL:' backup was taken for, until another full backup is taken, so it effectively invalidates all transactional backups that follow it.

    Josh Lewis

  • Joshua T. Lewis-378876 (11/9/2010)


    Simon,

    Just as an FYI, Microsoft has depreciated the TRUNCATE_ONLY option in SQL 2008, and you have to use a different option in the BACKUP LOG command:

    He didn't use TRUNCATE_ONLY as part of a BACKUP command, he used it in a DBCC SHRINKFILE--I can't find any mention that using it in that way is deprecated.

  • Joshua T. Lewis-378876 (11/9/2010)


    Simon,

    Just as an FYI, Microsoft has depreciated the TRUNCATE_ONLY option in SQL 2008, and you have to use a different option in the BACKUP LOG command:

    BACKUP LOG <database> TO DISK='NUL:'

    The replacement for Backup log ... truncate only is a switch to simple recovery model, not a backup to the nul device.

    A backup to the nul device is completely equivalent to taking a log backup and then deleting the backup file. It is NOT a replacement for backup log ... truncate only and quite honestly I would question the logic of anyone using that

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • paul.knibbs (11/9/2010)


    He didn't use TRUNCATE_ONLY as part of a BACKUP command, he used it in a DBCC SHRINKFILE--I can't find any mention that using it in that way is deprecated.

    It's not deprecated.

    It is, however, only applicable to data files, not to log files.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • I've come from the school of thought that shrinking a database is only putting it into a state where it has to grow again and hence should be avoided, so your article was very interesting and important reading.

    However I've occasionally run DBCC SHRINKFILE on the Log file, usually after a large data migration.

    So what considerations should I take into account if I run DBCC SHRINKFILE on the Log File, other that it having to grow again?

    Thanks

    Giles

  • Hi Simon,

    Thanks for such a nice explaination. I have some diffrent case hope you will give suggestion for this.

    I did logShipping for a large database now the file size increased vastly so i have used shirnkfile with truncate only option so that my logshipping will not disturb. but size of ldf file increase up to 40 to 60 GB.

    Any idea or guidance to reduce the file size without affecting LogShipping.

    Thanks

    Raj

    Taking frequent t-log backups using log shipping should reduce/stop ldf growth.

    Shrink of log file doesnt distrub log shipping.

  • I have quite a few very large databases and, like Giles above, I need to shrink the log files after large amounts of data are imported into the databases. All the databases use the simple recovery model. Is it such a bad thing to shrink the log file when using the simple recovery model?

  • george25 (11/9/2010)


    I have quite a few very large databases and, like Giles above, I need to shrink the log files after large amounts of data are imported into the databases. All the databases use the simple recovery model. Is it such a bad thing to shrink the log file when using the simple recovery model?

    It's a bad idea using ANY recovery model. Shrinking the log file will almost certainly mean it just has to grow again, and that just causes internal fragmentation in the log file which slows everything down. So long as you're taking regular backups then the log file should be at the size it needs to be to handle your largest transactions, which is where you want it to be!

  • Paul

    So, bearing in mind that my log files have all been shrunk, would you advise me to recreate them or just stop shrinking them?

    Regards

    George25

  • I would just stop shrinking them for the moment, and make sure you have regular backups so they don't keep growing out of control.

  • paul.knibbs (11/9/2010)


    and make sure you have regular backups so they don't keep growing out of control.

    Log backups are not necessary (and won't run) in simple recovery, which George indicated his databases are in.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 15 posts - 1 through 15 (of 109 total)

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