“No backupset selected to be restored” SQL Server 2012

前端 未结 21 1758
一向
一向 2020-12-04 08:36

I have a SQL Server 2012 database with filestream enabled. However, when I backup it and try to restore it on another SQL Server 2012 instance (on another machine), I simply

21条回答
  •  情深已故
    2020-12-04 09:05

    I had this problem and it turned out I was trying to restore to the wrong version of SQL. If you want more information on what's going on, try restoring the database using the following SQL:

    RESTORE DATABASE  
    FROM DISK='\.bak'
    

    That should give you the error message that you need to debug this.

提交回复
热议问题