I'm trying to restore a backup (made with Enterprise Manager) to a brand new database I just created (on the same server)I'm sure I've done this before, but I'm gettingServer: Msg 3154, Level 16, State 1, Line 1The backup set holds a backup of a database other than the existing 'MyNewDB' database.Server: Msg 3013, Level 16, State 1, Line 1RESTORE DATABASE is terminating abnormally.Here's the script I'm using:RESTORE DATABASE MyNewDB FROM DISK = 'D:\DATA\MSSQL\BACKUP\MyOldDB_040423_0552_GoLive.BAK' WITH REPLACE, RECOVERY, STATS = 10, MOVE 'MyOldDB_data' TO 'D:\DATA\MSSQL\DATA\MyNewDB.mdf', MOVE 'MyOldDB_log' TO 'D:\DATA\MSSQL\DATA\MyNewDB.ldf'
and then once it is restored I would normally do:ALTER DATABASE MyNewDB MODIFY FILE (NAME = 'MyOldDB_data', NEWNAME = 'MyNewDB_data')ALTER DATABASE MyNewDB MODIFY FILE (NAME = 'MyOldDB_log', NEWNAME = 'MyNewDB_log')
ThanksKristen