I'm trying to restore a database to a second test SQL server using the following......RESTORE DATABASE QualityFROM DISK = 'c:\backups\nptsvr02_full.bak'WITH MOVE 'Quality_Data' TO 'c:\SQLData\quality.mdf',MOVE 'Quality_Log' TO 'c:\SQLData\quality.ldf'
.....but I get the following errorServer MSg 3234, Level 16, State 2, Line 1 Logical file 'Quality_Data' is not part of the database 'Quality'.
I'm 100% sure the Logical file names are correct as I cut and paste them from the output of a RESTORE FILELISTONLY.What else could be wrong?