Suppose I have a user database backup as below:
Full database backup at 1:00
Log backup at 2:00
Log backup at 3:00
Log backup at 4:00
Log backup at 5:00
Then I want to restore database to 3:00. I can do that by:
load database from 1:00
load log from 2:00
load log from 3:00
At this point, I bring the database online, then I can access this database.
After that, I want to continue to restore database to 5:00, how to do it?