SQL Server 2012 – Missing LSN in Backupset Issue

backuprestoresql-server-2012transaction-log

I was testing some restore scenario for one of my requirement.
SO while i was restoring i got the below error.
--Msg 4305, Level 16, State 1, Line 79
--The log in this backup set begins at LSN 38000000116400001, which is too recent to apply to the database.
--An earlier log backup that includes LSN 38000000116100001 can be restored.

So i checked the backupset table to find the missing log backup.
But i couldn't find that LSN in the results.

enter image description here

I was testing a scenario that is why the full backups are taken every 15 minutes and tlog backup schedules every 5 minutes.
I notice that Full backup and Tlog backup occurs at the same time every 15 minutes.Does that create any issue while restoring.?

Also the restore scenario i am trying is as below:
I start with a full backup restore,then i restore all tlog backups and i skip full backups which occurred in between.?
Please suggest if there is any issues in that?

Best Answer

But i couldn't find that LSN in the results.

The tran log backup taken at 09:00 contains the lsn 38000000116100001.

Full backup and Tlog backup occurs at the same time every 15 minutes.Does that create any issue while restoring.?

No. Full backups never affect the log chain.

I start with a full backup restore,then i restore all tlog backups and i skip full backups which occurred in between.?

Yes that is correct.