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
I thought I was not stupid enough to mix up the versions - however, I didn't realize that on my new server, a SQL Server 2005 instance was already installed from birth named SQLEXPRESS
. When trying to restore my SQL Server 2008 R2 backed up database in SSMS 2012 to the SQLEXPRESS
instance, the list of backup sets was empty.
Eventually I realized that the SQLEXPRESS
instance on the server was not a 2012 instance, but a 2005. I disconnected and connected to the actual 2012 instance (in my case named SQLEXPRESS2012
), and it (obviously) worked.