|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 7:30 AM
Points: 1,566,
Visits: 600
|
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Tuesday, November 09, 2010 10:08 PM
Points: 133,
Visits: 35
|
|
hi Does dbccshinkfile( 'filename',mb) wll take care of fragmentation
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Today @ 6:08 AM
Points: 110,
Visits: 290
|
|
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
|
|
|
|
|
Mr or Mrs. 500
      
Group: General Forum Members
Last Login: Friday, January 11, 2013 1:07 PM
Points: 587,
Visits: 131
|
|
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.
Joshua T. Lewis
|
|
|
|
|
Mr or Mrs. 500
      
Group: General Forum Members
Last Login: Friday, January 11, 2013 1:07 PM
Points: 587,
Visits: 131
|
|
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.
Joshua T. Lewis
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Today @ 6:28 AM
Points: 1,258,
Visits: 4,259
|
|
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.
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 2:07 PM
Points: 37,731,
Visits: 29,994
|
|
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 2008, MVP 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
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 2:07 PM
Points: 37,731,
Visits: 29,994
|
|
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 2008, MVP 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
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: 2 days ago @ 9:53 AM
Points: 57,
Visits: 248
|
|
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
|
|
|
|
|
SSC-Addicted
      
Group: General Forum Members
Last Login: Wednesday, May 08, 2013 12:27 AM
Points: 483,
Visits: 1,191
|
|
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.
Regards, Raj
Strictlysql.blogspot.com
|
|
|
|