Reputation: 3294
I have a SQL Server 2012 database with Simple Recovery Model. The SQL Log file size was set to 20mb but when a full database backup is made, the size of the file is set back to 1mb.. why is that? is the default behavior?
Upvotes: 0
Views: 57
Reputation: 3118
In simple revovery model the log write has very low rate. So every time you take a full backup the engine figure out log is not critical and shrink it to 1mb.
Upvotes: 1