Reputation: 1953
I am using the SQL script on Select SQL Server database size in order to monitor how much my database file usage increased. I am particularly inspecting the "data_used_size" and "log_used_size" fields. But I notice that while the data file usage consistently increases after a set of activities, log file usage sometimes increases and sometimes decreases, thus always staying at a certain level. Why is this?
Upvotes: 1
Views: 98
Reputation: 5580
This is documented in MSDN article about Transaction Log
Upvotes: 4