Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
venkath
Posting Yak Master
202 Posts |
Posted - 2006-12-12 : 03:44:06
|
Hi allI am trying to restore a database in the local server from the backup that was taken from the client server.While restoring the database, i am getting the following error.Error3205: Too many backup devices specified for backup or restore; only 64 are allowed.RESTORE FILELIST is terminating abnormally.What could have caused the above error.?Thanks |
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2006-12-12 : 03:49:00
|
Maybe you have attached to many devices?select * from master..sysdevicesPeter LarssonHelsingborg, Sweden |
 |
|
venkath
Posting Yak Master
202 Posts |
Posted - 2006-12-12 : 03:50:51
|
ok thanksI don't have access to the server from where this particular backup was taken.Then how can i restore the database now in the local server.. |
 |
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2006-12-12 : 04:15:19
|
You should run the query above on the target server, where you want to restore the file...Peter LarssonHelsingborg, Sweden |
 |
|
venkath
Posting Yak Master
202 Posts |
Posted - 2006-12-12 : 04:25:37
|
When i execute the above query on the target server, i got the following output..How can this result helps in understanding the issue...name size low high status cntrltype phyname -------------------------------------------------------------------------------------------------------------------------------- ----------- ----------- ----------- ------ --------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- master 512 0 2047 2 0 D:\Program Files\Microsoft SQL Server\MSSQL\data\master.mdfmastlog 128 0 511 66 0 D:\Program Files\Microsoft SQL Server\MSSQL\data\mastlog.ldfmodeldev 80 0 319 2 0 D:\Program Files\Microsoft SQL Server\MSSQL\data\model.mdfmodellog 96 0 383 66 0 D:\Program Files\Microsoft SQL Server\MSSQL\data\modellog.ldftempdev 256 0 1023 2 0 D:\Program Files\Microsoft SQL Server\MSSQL\data\tempdb.mdftemplog 64 0 255 66 0 D:\Program Files\Microsoft SQL Server\MSSQL\data\templog.ldf(6 row(s) affected) Thanks |
 |
|
Kristen
Test
22859 Posts |
Posted - 2006-12-12 : 04:31:26
|
See also: http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=55210&SearchTerms=RESTORE%20syntax%20/%20example |
 |
|
|
|
|