I assume you selected the Overwrite option when restoring the database?
It's also quite possible that your database location is different than the location from which the bw_dragonage_content.bak was exported. If so, instead of going through the Studio, try doing it via command prompt (I assume you are running some flavor of Win7? If so, make sure you run the command prompt as administrator).
sqlcmd -S .\\BWDATOOLSET -E -Q "RESTORE DATABASE bw_dragonage_content FROM DISK = '(folder path)\\bw_dragonage_content.bak' WITH REPLACE, MOVE 'bw_da_content_euts_Data' TO '(database file location folder path)\\bw_dragonage_content.mdf', MOVE 'bw_da_content_euts_Log' TO '(database file location folder path)\\bw_dragonage_content.ldf'"
The (folder path) above is the location of your .bak file
The (database file location folder path) is the path where your blank database's mdf and ldf are located. You can get this by clicking on the database and selecting properties, I think (I tried to find the exact menu using Studio now but it is unable to connect to my database

)
In a typical installation, it should be under C:\\Program Files\\DAODB\\Data
If x64 system, then Program File (x86) instead of Program Files.
Hopefully, the above works. Let us know

Edit: Stupid forum code converts single slashes to double.
Modifié par TimelordDC, 18 novembre 2010 - 02:22 .