I am trying to restore a SQL Server backup file for my database, but it is throwing an error as follow:
The backup set holds a backup of a database ot
Either:
1) Use WITH REPLACE while using the RESTORE command (if using the GUI, it is found under Options -> Overwrite the existing database (WITH REPLACE)).
WITH REPLACE
RESTORE
2) Delete the older database which is conflicting and restore again using RESTORE command.
Delete
Check the link for more details.