build install with sql server 2008 Express
-
Hello, i have an application written in C# with VS 2010 Prof and i am using SQL Server Express 2008. It is a client Server app but the Server (SQL-Server) coud run on a client. What is the best way to make an installation file which installs my app as a Server. That means i have to make a installation file which installs my app and sql-server Express 2008 and i need another installation which installs only the client. Or it is possible to make one installation file which asks to install the sql-server ? thanks so far jogi
-
Hello, i have an application written in C# with VS 2010 Prof and i am using SQL Server Express 2008. It is a client Server app but the Server (SQL-Server) coud run on a client. What is the best way to make an installation file which installs my app as a Server. That means i have to make a installation file which installs my app and sql-server Express 2008 and i need another installation which installs only the client. Or it is possible to make one installation file which asks to install the sql-server ? thanks so far jogi
You should not include SQL Server in your installation. There are a couple of reasons: 0) You can only distribute SQL Server Express for copyright reasons - not SQL Server full version. 1) They may already have SQL Server installed on the network. If so, then they will presumably want to use that version. 2) If they do have SQL server installed and you start proliferating SQL server Express instances, you are going to annoy the heck out of the database administrator... 3) A single site installation of SQl Server is a lot more likely to be backed up than a number of scattered version under user control. 4) Sql server is quite complex for a "normal" user to install and administer - it is not a good idea! 5) It will destroy the primary advantage of using Sql Server over SqlCE or SQLite - multiuser access. If everyone installs their own copy of SQL server, then you will have multiple copies of your database, each used by a single person. This will cause some confusion, and (depending on how you wrote the original database) may take some considerable effort to combine into a single instance when the problem is realized.
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
-
Hello, i have an application written in C# with VS 2010 Prof and i am using SQL Server Express 2008. It is a client Server app but the Server (SQL-Server) coud run on a client. What is the best way to make an installation file which installs my app as a Server. That means i have to make a installation file which installs my app and sql-server Express 2008 and i need another installation which installs only the client. Or it is possible to make one installation file which asks to install the sql-server ? thanks so far jogi
I agree with Griff. Just document that SQL Server is required and let the user decide how best to satisfy the requirement. I would also add that if you include version X of some software it may be out of date by the time a user installs it. (SQL Server 2012 is just around the corner, the user may even have a beta.)
-
You should not include SQL Server in your installation. There are a couple of reasons: 0) You can only distribute SQL Server Express for copyright reasons - not SQL Server full version. 1) They may already have SQL Server installed on the network. If so, then they will presumably want to use that version. 2) If they do have SQL server installed and you start proliferating SQL server Express instances, you are going to annoy the heck out of the database administrator... 3) A single site installation of SQl Server is a lot more likely to be backed up than a number of scattered version under user control. 4) Sql server is quite complex for a "normal" user to install and administer - it is not a good idea! 5) It will destroy the primary advantage of using Sql Server over SqlCE or SQLite - multiuser access. If everyone installs their own copy of SQL server, then you will have multiple copies of your database, each used by a single person. This will cause some confusion, and (depending on how you wrote the original database) may take some considerable effort to combine into a single instance when the problem is realized.
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
So You used the same text again :)
Frazzle the name say's it all
-
So You used the same text again :)
Frazzle the name say's it all
That's why I have it in the database! :laugh:
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
-
Hello, i have an application written in C# with VS 2010 Prof and i am using SQL Server Express 2008. It is a client Server app but the Server (SQL-Server) coud run on a client. What is the best way to make an installation file which installs my app as a Server. That means i have to make a installation file which installs my app and sql-server Express 2008 and i need another installation which installs only the client. Or it is possible to make one installation file which asks to install the sql-server ? thanks so far jogi
I hope this is help you. http://msdn.microsoft.com/en-us/library/ms143219.aspx[^]