khurram shahzad
khurram shahzad

Reputation: 9

SQL Server Transactional log backup is larger than full backup

Transaction log backup is 450 mb but the full backup size is 10mb.

Upvotes: 0

Views: 442

Answers (1)

Rhys Jones
Rhys Jones

Reputation: 5508

In simple terms, the transaction log backup contains activity, but the full backup just contains data.

For example, if you have an empty table, insert 100 rows, then delete all 100 rows, the table will still be empty. The full backup will just be the empty table, but the transaction log backup will record the 100 inserts and deletes.

Upvotes: 1

Related Questions