↧
Answer by sp_lock
Have you tried using the "move" parameter?RESTORE DATABASE xxx FROM DISK = 'd:\xxx_20091201.bak' WITH RECOVERY, MOVE 'xxx_data' TO 'w:\data\xxx.mdf', MOVE 'xxx_Log' TO 'w:\data\xxx_log.ldf'
View ArticleAnswer by Håkan Winther
You can use RESTORE FILELISTONLY to return a result set containing a list of the database and log files contained in the backup set, and you need to use MOVE as sp_lock answered for every file that...
View ArticleAnswer by Ray Herring
I have the same problem and it is not "corrupt" backups. I am working with a 300GB SQL 2000 database. I use Redgate backup 6.0 and the backups restore just fine to SQL 2000 and SQL 2005. On SQL 2008 I...
View ArticleAnswer by davegeeit001
Checkout these 2 threads would be help you. http://ask.sqlservercentral.com/questions/2574/cant-restore-sql-server-2000-backup-to-sql-server.html...
View Article