473,395 Members | 1,464 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Implement a system

Hi All,

If I want to deploy an C#+SQL2000 application to client site, does the
client computer
need to have SQL2000 server at all ? or the relevant database and tables
will be collected
during the process of creating an installer ?

Thanks
John
Nov 13 '05 #1
4 1524
John,

The client site needs to have SQL server 2000 installed already.
Generally speaking, if I am deploying an app to the client that requires SQL
Server 2000, then I will require that they purchase and install SQL Server
2000, so that the responsibility of licensing is not on my shoulders (and
I'm not breaking any agreements, as I am not a SQL server 2000 vendor).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- ni**************@exisconsulting.com

"msnews.microsoft.com" <jy***@martecltd.com.au> wrote in message
news:ue**************@TK2MSFTNGP12.phx.gbl...
Hi All,

If I want to deploy an C#+SQL2000 application to client site, does the
client computer
need to have SQL2000 server at all ? or the relevant database and tables
will be collected
during the process of creating an installer ?

Thanks
John

Nov 13 '05 #2
SQL2000 is a separate product and can't be installed from within your
application. You should call it "a prerequisite". It should exist before the
installation.

Database and tables are part of your solution and you should install them
during your application installation.

BTW, are you sure that the client computer should run SQL Server? May be
the server can be located on another machine and the application machine
will run SQL Client? Or may be you need two separate installs: server and
client?

Eliyahu

"msnews.microsoft.com" <jy***@martecltd.com.au> wrote in message
news:ue**************@TK2MSFTNGP12.phx.gbl...
Hi All,

If I want to deploy an C#+SQL2000 application to client site, does the
client computer
need to have SQL2000 server at all ? or the relevant database and tables
will be collected
during the process of creating an installer ?

Thanks
John

Nov 13 '05 #3
As far as your database deployment is concerned, copying Access .mdb file is
fine. But Access itself also needs to be installed on the target machine,
either full version or run-time only. You can't use an Access db without
database components that come with Access. If you have the MS Office
development version, you can deploy Access run-time files with your
database,

HTH,

Eliyahu

"John" <jo******@froggy.com.au> wrote in message
news:eT**************@TK2MSFTNGP11.phx.gbl...
Thanks Nicholas / Mike

Due to the "SQL server" installaion and purchase was not in the contract in the first place,
and the client's size is not the big, thus, If I change the db to Access
rather than SQL, then
can I just copy the Access db file ".mdb" to client site during the
delployment ?

Regards,
John

"Eliyahu Goldin" <re*************@monarchmed.com>
:#h**************@tk2msftngp13.phx.gbl...
SQL2000 is a separate product and can't be installed from within your
application. You should call it "a prerequisite". It should exist before the installation.

Database and tables are part of your solution and you should install them
during your application installation.

BTW, are you sure that the client computer should run SQL Server? May be
the server can be located on another machine and the application machine
will run SQL Client? Or may be you need two separate installs: server and
client?

Eliyahu

"msnews.microsoft.com" <jy***@martecltd.com.au> wrote in message
news:ue**************@TK2MSFTNGP12.phx.gbl...
Hi All,

If I want to deploy an C#+SQL2000 application to client site, does the
client computer
need to have SQL2000 server at all ? or the relevant database and tables
will be collected
during the process of creating an installer ?

Thanks
John


Nov 15 '05 #4
Thanks Eliyahu !!

"Eliyahu Goldin" <re*************@monarchmed.com> ¼¶¼g©ó¶l¥ó·s»D
:O#**************@tk2msftngp13.phx.gbl...
As far as your database deployment is concerned, copying Access .mdb file is
fine. But Access itself also needs to be installed on the target machine,
either full version or run-time only. You can't use an Access db without
database components that come with Access. If you have the MS Office
development version, you can deploy Access run-time files with your
database,

HTH,

Eliyahu

"John" <jo******@froggy.com.au> wrote in message
news:eT**************@TK2MSFTNGP11.phx.gbl...
Thanks Nicholas / Mike

Due to the "SQL server" installaion and purchase was not in the contract in the first place,
and the client's size is not the big, thus, If I change the db to Access
rather than SQL, then
can I just copy the Access db file ".mdb" to client site during the
delployment ?

Regards,
John

"Eliyahu Goldin" <re*************@monarchmed.com>
:#h**************@tk2msftngp13.phx.gbl...
SQL2000 is a separate product and can't be installed from within your
application. You should call it "a prerequisite". It should exist before the installation.

Database and tables are part of your solution and you should install them
during your application installation.

BTW, are you sure that the client computer should run SQL Server? May be
the server can be located on another machine and the application machine
will run SQL Client? Or may be you need two separate installs: server and
client?

Eliyahu

"msnews.microsoft.com" <jy***@martecltd.com.au> wrote in message
news:ue**************@TK2MSFTNGP12.phx.gbl...
Hi All,

If I want to deploy an C#+SQL2000 application to client site, does the
client computer
need to have SQL2000 server at all ? or the relevant database and tables
will be collected
during the process of creating an installer ?

Thanks
John



Nov 15 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
by: Sherif ElMetainy | last post by:
Hello I was just got VS 2005 preview, and was trying generics. I tried the following code int intArray = new int; IList<int> intList = (IList<int>) intArray; it didn't compile, also the...
7
by: Brian Henry | last post by:
Hi, I am doing the following stored procedure CREATE PROCEDURE . @sender varchar(50), @subject varchar(400), @messagebody text, @hasAttachments bit, @sentTime DateTime AS
2
by: Dave | last post by:
I'm trying to extend the System.IAsynchResult so I created a class as follows: public class MyAsynchResult : System.IAsyncResult { ..... } But get: ...
5
by: Stacey Levine | last post by:
I have a webservice that I wanted to return an ArrayList..Well the service compiles and runs when I have the output defined as ArrayList, but the WSDL defines the output as an Object so I was...
14
by: Jim | last post by:
I am using VB.Net 2.0 and I am completely new to the concept of implementing interfaces. Can anyone explain "implementing interfaces" to me and perhaps give me an example of implementing an...
1
by: midnight madness | last post by:
I tried but failed to implement a template class that support IEnumerator<T> interface using C++/CLI in VS 2005 Professional version. I could not figure out the proper syntax to implement the...
2
by: Lucian Wischik | last post by:
Does ReadOnlyCollection<T> really implement IList<T>, like it claims to do? ... When I right-click on ReadOnlyCollection and look at its definition, it says this: public class...
4
by: PenguinPig | last post by:
Dear Experts, Could you please provide you comment to me? Thanks An Exhibition has many Halls, and different Booth Types If exhibition is not exist, hall and booth type will not exist too. ...
19
by: UG | last post by:
I just wanted to know whether any timer facility exists in C, as it is not mentioned in K&R 2, or in the ISO Draft. By timer function i mean that when we use standard input function like scanf() or...
2
by: Tony Johansson | last post by:
Hello! Below I have a working program. I have one generic class called Farm<T> with this header definition public class Farm<T: IEnumerable<Twhere T : Animal Now to my question I changed the...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.