SQL server export

POB

POB

Soldato
Joined
27 May 2003
Posts
5,948
Location
Its a Small World
Hi,

I've developed an app that uses an SQL server database.

What is the best way to take the database and data and prepare it for distribution, making it easy for the end user to get a install of it.
 
What's your app written in (C#, VB.NET, Java, etc.) and what installation system are you planning to use for it (Windows Installer, InstallShield, Inno Setup, etc)?
 
Yes they will have it installed. I'm not concerned if the user has to manualy install the database.

I did find the backup system in SQL server could this work?
 
Been a while since I used Inno Setup, but the scripting language supports COM Automation so you should be able to invoke ADO/SMO to create a database instance, and then either populate the database from a backup, or create your schema and data from SQL scripts as part of your installation package.
 
Back
Top Bottom