how are you trying to restore? Via QUI, or SQL script?Useing SQL script, try the following:Restore Database <YourDBName>From Disk = 'fullpath to you backup file'with move '<data file name>' to 'full path where you want mdf to reside',with move '<log file name>' to 'full path where you want ldf to reside'--for example:Restore Database MYDBfrom disk = 'c:\temp\serverdb.bak'with move 'ServerDBDataFile' to 'd:\data\mydb.mdf',with move 'ServerDBLogFile' to 'd:\Log\mydb.ldf'--If you don't know the logical file name,s, then use restore filelistonly from the backup: egRestore FileListOnlyfrom disk = 'c:\temp\serverdb.bak'--then copy the logical file names to the SQL
I'll leave it to someone else to describe this in QUI - I generally avoid GUI if I can*##* *##* *##* *##* Chaos, Disorder and Panic ... my work is done here!