Q. What do these error msgs mean, why are they showing up and how do I fix them?
Errors:
1. Autogrow of file 'fl1stDwProd2_Log' in database 'fl1stDwProd2' took 105468 milliseconds. Consider using ALTER DATABASE to set a smaller FILEGROWTH for this file.
2. WARNING: EC 6ba3b548, 0 waited 300 sec. on latch 42c862c8, class MISC. Not a BUF latch.
System setup:
Db space allocation: 11799MB
Log space allocation: 49497MB
Db Size: 12,081,344K
Lob Size: 50,684,544
Both Auto Grow by 10% Unrestricted, Recovery Model Full, Auto Shrink.
Full backup nightly
Software/Hardware used:
ASKED:
January 10, 2006 10:11 AM
UPDATED:
January 11, 2006 10:32 AM
I’ve backed up the tran log and resized.
The size is now smaller than the db and I restriced the growth.
Thanks so much!
Be careful when you restrict the growth. If someone performs a large transaction (for example delete a million rows from a table), the log file could fill up and can’t extend. As a result, SQL Server will halt. The important thing is to perform backups on the transaction log so the space can be reused. If you leave auto extend on and you backup the log, the log file will only be as big as needed to perform the largest transaction ever done. If someone performs an unusually large transaction, you could shrink the file again.