This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Error while Restore from bak File
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Nov 19, 2007
08:02 AM
Error while Restore from bak File
Hi
I am new to IS.
I am creating the windows installer using install script, wants to execute the sql script for database operations.
with sql script i manage to run simple insert query with
-- sql login dlg
-- connection
-- sql scripts
Now i want to "restore" db with and without replacement text mode so i go through forums and try to execute queries
But i got error msg as
" Error 27506.Error executing SQL Script sqlscript8.sql Line 13. RESTORE DATABASE is terminating abnormally.(3013)"
Any Help
Thanks in advance.....
Sandip
I am new to IS.
I am creating the windows installer using install script, wants to execute the sql script for database operations.
with sql script i manage to run simple insert query with
-- sql login dlg
-- connection
-- sql scripts
Now i want to "restore" db with and without replacement text mode so i go through forums and try to execute queries
But i got error msg as
" Error 27506.Error executing SQL Script sqlscript8.sql Line 13. RESTORE DATABASE is terminating abnormally.(3013)"
Any Help
Thanks in advance.....
Sandip
(3) Replies
‎Nov 20, 2007
06:07 AM
I encountered a similar issue, I forget the error message I received but it sounds similar.
I also was attempting to restore a database using a .bak file. I was using text replacement to restore the .bak file to the database name I had provided in the SQL Login dialog.
However I realised this will not work because the SQL Login dialog is opening a connection to the database that you specify in that dialog.
I overcame this by using a SQL script that included the SQL statements to create the tables/sp's/views/data rather than using a SQL script that restored the .bak.
I hope this helps!
Alan
I also was attempting to restore a database using a .bak file. I was using text replacement to restore the .bak file to the database name I had provided in the SQL Login dialog.
However I realised this will not work because the SQL Login dialog is opening a connection to the database that you specify in that dialog.
I overcame this by using a SQL script that included the SQL statements to create the tables/sp's/views/data rather than using a SQL script that restored the .bak.
I hope this helps!
Alan