After running maintenance, the log files are growing from 50Mb to over 4Gb each and then makes our database and log backups even bigger.
I have setup a job to shrink the log between log backups, but it is not shrinking the log at all. The only way I've been able to shrink it, is to change recovery to simple, shrink log, then back to full.
use [db] DBCC SHRINKFILE (N'dbLog.ldf', 500)
Is there any reason why it is not shrinking?
I have setup a job to shrink the log between log backups, but it is not shrinking the log at all. The only way I've been able to shrink it, is to change recovery to simple, shrink log, then back to full.
use [db] DBCC SHRINKFILE (N'dbLog.ldf', 500)
Is there any reason why it is not shrinking?