Comments
3 comments
-
Could you pls run the RESTORE FILELISTONLY command from Query Analyzer to see if it works e.g.
exec master..sqlbackup '-sql "RESTORE FILELISTONLY FROM DISK = [<file name>]"' -
Can you give more detail? What is the filelist? What file name do i need to supply? What does this command do?
I looked in the help document and it doesn't give any detail. -
The RESTORE FILELISTONLY command is similar to that found in SQL Server. You can look up the details by looking up RESTORE FILELISTONLY in the SQL Server Books Online index.
It displays the list of files used by the database, which SQL Backup needs in step 3 of the restore wizard.
To run this in Query Analyzer, provide the name of the backup file. If your file is located in G:\Backups\pubs_full.sqb, run the following in Query Analyzer
exec master..sqlbackup '-sql "RESTORE FILELISTONLY FROM DISK = [G:\Backups\pubs.sqb]"'
and check the output.
Add comment
Please sign in to leave a comment.
What does this mean? How can I get around it?