Hey guys, I'm a little stuck right now.
My boss wants me to reuse an older database in SQL Server 2014 (SQLEXPRESS) for Docusnap, which we already used for an older version of Docusnap. Therefore he gave me the old .mdf's and .ldf's. I am now desperately trying to get the old data into the new database...
-Attaching the old master.mdf (and the other .mdf's) to the new master.mdf does not work, because they have the same name.
-Deleting the new master.mdf (and the other .mdf's) and replacing it with the old one(s) ends up with the SQL Server service not starting, because it can't find the master.mdf although I'm changing the paths correctly - SQL Server checks in a different path when I replace the .mdf's ("C:\Program Files\Microsoft SQL Server\MSSQL12.DOCUSNAP" instead of "C:\Program Files\Microsoft SQL Server\MSSQL12.SQLEXPRESS")
Am I...