Click here to Skip to main content
15,891,633 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
I have developed an application with SQL database. Now i need to create a system installation setup without installing SQL server, But it should be install the database to the current machine. Database files will be available with the installation. is this possible to do. Please guide me.

Thanks
Ashok pathirana
Posted

1 solution

In general, in a multi-user environment the installation of the database server, database, and application are all executed as three separate steps. It may well be that the site already has a SQL server installed so in such case the server installation can be skipped, also often applications are installed several times while the database, in order to be accessible by all applications, is installed only once.

The second thing is that installing just database files does not make sense. You need the database engine to be able to use them. The engine may be a full-featured SQL Server instance or just a minimal compact engine, but still the engine is needed.

However, as said in the first paragraph, typically the database files are installed separately and only once.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900