Skip to content
Advertisement

Restore Backups automatically using SQL Server

The general context is that, I try to restore a list of backups automatically using the script below. I put all the backups in the same folder, after that I put the names of the backups in a table to retrieve them easily. Finally, I put a cursor that points each time to a backup and restores it. Now when executing script, I get this error:

Msg 3234, Level 16, State 2, Line 82 Logical file ‘OP38MLG_db_201903040000_DATA’ is not part of database ‘OP38MLG_db_201903040000’. Use RESTORE FILELISTONLY to list the logical file names. Msg 3013, Level 16, State 1, Line 82 RESTORE DATABASE is terminating abnormally.

When I restore each backups independently, the operation ends successfully But when I try to restore the list I got error.

I expect in the output that the backups will be restored and I could see them in the database bar, but the actual output is error that I mentioned above.

Advertisement

Answer

SQL Server databases consist of a number of “Logical Files“. When you restore a database you need to say where these files should be stored. You are doing that, but your code makes assumptions about the names of these logical files. You are assuming they are FileName_Data and FileName_Log. The error message is telling you that is wrong in this case. If you can run the following query, look in the LogicalName field to see the actual values for this .BAK file.

Over the years, this has happened to me many times. And it’s always a surprise to find out the actual logical file names.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement