SQL Server – Understanding Identical Log Sequence Numbers

sql serversql-server-2012transaction-log

Below is the log Sequence number of the log back ups and full back ups

Why are LSN numbers same from 11.30 to 11.45 pm…Was it due to the fact that there was no changes made ? When can i find out that the log sequence has been broken ?

11.30 pm Log first LSN:  325:31307:1,   last LSN: 325:31307:1
11.45 pm Log first LSN:  325:31307:1,   last LSN: 325:31307:1
12.00 am Full first LSN: 325:31409:239, last LSN: 325:31507:1
01.00 AM lOG first LSN:  325:31307:1,   last LSN: 325:42530:1

Best Answer

Log Sequence Numbers reflect any and all modifications made to a database. If no transactions have occurred between two backups, those backups will have the same LSNs.

Having said that, even the action of taking a backup will normally cause an increment to the LSN.

What version of SQL Server is this question about?