I have a DB maintenance plan that backs up all of my non sys DB's and trans logs. Recentely I noticed that the trans logs are not shrinking upon backup.
I have verified that they are in fact being backed up nightly.
Are the log files continuing to grow? Or are they just not shrinking to a smaller size?
If the log files are continuing to grow in absolute size, you might have an open, uncommitted transaction (check by using SELECT @@TRANCOUNT) somewhere. You will need to find and kill that transaction.
If the log files are not growing (but aren't shrinking down to a size you are comfortable with), I would read a couple of topics in BOL:
Virtual Log Files
Shrinking a Database
You might also consider increasing the frequency of you log file backups.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.