473,383 Members | 1,877 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,383 software developers and data experts.

Copy SQL 2000 Database

I am creating an ASP.NET application using C# Visual
Studio .NET 2003, and have set up the project using a
local instance of MSDE (SQL Server 2000 Desktop Edition).
This database has multiple tables as well as Stored
Procedures and Database Designs (relationships, etc). How,
when I create a setup project, can I create this database
on a valid SQL 2000 server? Can I run a batch of SQL
statements (similar to a DUMP function in mySQL) or do I
simply include the database and "attach" it to the
installation server? Any insight or links would be
appreciated!

thnx
Nov 18 '05 #1
5 1041
You can import the database using SQL Server quite easily.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Ryan" <ry*******@hotmail.com> wrote in message
news:08****************************@phx.gbl...
I am creating an ASP.NET application using C# Visual
Studio .NET 2003, and have set up the project using a
local instance of MSDE (SQL Server 2000 Desktop Edition).
This database has multiple tables as well as Stored
Procedures and Database Designs (relationships, etc). How,
when I create a setup project, can I create this database
on a valid SQL 2000 server? Can I run a batch of SQL
statements (similar to a DUMP function in mySQL) or do I
simply include the database and "attach" it to the
installation server? Any insight or links would be
appreciated!

thnx

Nov 18 '05 #2
How about using an "install" package. I'm making this app
to be redistributed and I'll also need to redistribute the
database.

-----Original Message-----
You can import the database using SQL Server quite easily.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Ryan" <ry*******@hotmail.com> wrote in message
news:08****************************@phx.gbl...
I am creating an ASP.NET application using C# Visual
Studio .NET 2003, and have set up the project using a
local instance of MSDE (SQL Server 2000 Desktop Edition). This database has multiple tables as well as Stored
Procedures and Database Designs (relationships, etc). How, when I create a setup project, can I create this database on a valid SQL 2000 server? Can I run a batch of SQL
statements (similar to a DUMP function in mySQL) or do I
simply include the database and "attach" it to the
installation server? Any insight or links would be
appreciated!

thnx

.

Nov 18 '05 #3
You can create a DTS package on the SQL Server which you can install.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

<an*******@discussions.microsoft.com> wrote in message
news:00****************************@phx.gbl...
How about using an "install" package. I'm making this app
to be redistributed and I'll also need to redistribute the
database.

-----Original Message-----
You can import the database using SQL Server quite easily.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Ryan" <ry*******@hotmail.com> wrote in message
news:08****************************@phx.gbl...
I am creating an ASP.NET application using C# Visual
Studio .NET 2003, and have set up the project using a
local instance of MSDE (SQL Server 2000 Desktop Edition). This database has multiple tables as well as Stored
Procedures and Database Designs (relationships, etc). How, when I create a setup project, can I create this database on a valid SQL 2000 server? Can I run a batch of SQL
statements (similar to a DUMP function in mySQL) or do I
simply include the database and "attach" it to the
installation server? Any insight or links would be
appreciated!

thnx

.

Nov 18 '05 #4
Could you explain that further or post a link?
-----Original Message-----
You can create a DTS package on the SQL Server which you can install.
--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

<an*******@discussions.microsoft.com> wrote in message
news:00****************************@phx.gbl...
How about using an "install" package. I'm making this app to be redistributed and I'll also need to redistribute the database.

>-----Original Message-----
>You can import the database using SQL Server quite easily. >
>--
>HTH,
>Kevin Spencer
>..Net Developer
>Microsoft MVP
>Big things are made up
>of lots of little things.
>
>"Ryan" <ry*******@hotmail.com> wrote in message
>news:08****************************@phx.gbl...
>> I am creating an ASP.NET application using C# Visual
>> Studio .NET 2003, and have set up the project using a
>> local instance of MSDE (SQL Server 2000 Desktop

Edition).
>> This database has multiple tables as well as Stored
>> Procedures and Database Designs (relationships, etc).

How,
>> when I create a setup project, can I create this

database
>> on a valid SQL 2000 server? Can I run a batch of SQL
>> statements (similar to a DUMP function in mySQL) or do I >> simply include the database and "attach" it to the
>> installation server? Any insight or links would be
>> appreciated!
>>
>> thnx
>
>
>.
>

.

Nov 18 '05 #5
Not much to explain. DTS (Data Transformation Services) is a part of SQL
Server, and is used for conducting various types of scripted operations on
the local SQL Server, and for interacting with other databases and database
servers. A DTS package is simply a script which you can create with SQL
Enterprise Manager. If you need to know more, I would recommend going to the
SQL Server site on the microsoft.com domain:

http://www.microsoft.com/sql/default.asp

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
<an*******@discussions.microsoft.com> wrote in message
news:00****************************@phx.gbl...
Could you explain that further or post a link?
-----Original Message-----
You can create a DTS package on the SQL Server which you

can install.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

<an*******@discussions.microsoft.com> wrote in message
news:00****************************@phx.gbl...
How about using an "install" package. I'm making this app to be redistributed and I'll also need to redistribute the database.
>-----Original Message-----
>You can import the database using SQL Server quite easily. >
>--
>HTH,
>Kevin Spencer
>..Net Developer
>Microsoft MVP
>Big things are made up
>of lots of little things.
>
>"Ryan" <ry*******@hotmail.com> wrote in message
>news:08****************************@phx.gbl...
>> I am creating an ASP.NET application using C# Visual
>> Studio .NET 2003, and have set up the project using a
>> local instance of MSDE (SQL Server 2000 Desktop
Edition).
>> This database has multiple tables as well as Stored
>> Procedures and Database Designs (relationships, etc).
How,
>> when I create a setup project, can I create this
database
>> on a valid SQL 2000 server? Can I run a batch of SQL
>> statements (similar to a DUMP function in mySQL) or do I >> simply include the database and "attach" it to the
>> installation server? Any insight or links would be
>> appreciated!
>>
>> thnx
>
>
>.
>

.

Nov 18 '05 #6

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

Similar topics

4
by: Glen A Stromquist | last post by:
I have a 6.5 db that I want to create a copy of, I can move it to either a machine running 7 or 2000. I am more used to doing this in Oracle so pls bear with me... I don't want to have any...
1
by: Justin Allen | last post by:
I am using SQL 2000, 2000 Server. I need to find out how to schedule a database export import. I have a production database that I need to easily copy to a test database occassionaly. When I run...
6
by: Shyguy | last post by:
I want to create two buttons on a form. One would allow the user to Copy the contents of the current records memo field, the other would allow them to print. I set up a report based on the memo...
1
by: Chip | last post by:
Just installed Access 2000 on a new WinXP computer and imported (converted) a single user Access 97 database. When I try to manually "copy" a record, the "cut", "copy", and "paste" options...
1
by: Mr Gabriel | last post by:
Hi to all, I'm trying to use the copy database wizard to copy a database from the 2000 version to the 2005 version of sql server. I choose not to copy logins so I expect to find a database with...
1
by: Byron | last post by:
Hi, I have(had) an old Win2k Server server with about 30 web site databases (SQL 2000) that just went under due to hardware problems. Thankfully, I have backups of all the databases plus the MDF...
1
by: Paolo | last post by:
I have been following a few walkthroughs that came with VS 2005, and they work fine (I had to change the machine.config files to work with my SQL 2005 Pro version, instead of the SQL 2005 Express)....
5
by: Steve | last post by:
Hi; I thought I would rephrase a question I asked in another post to more quickly get to the heart of the matter. My apologies for anyone who is offended by what appears to be a repetition. ...
1
by: ll | last post by:
Hi, I have copied a MS SQL database to my local machine and am testing it with ASP pages, locally, on IIS. I have a db connect page that keeps the current connections for the live database. My...
9
by: dpatel75 | last post by:
I am trying to copy a database from a SQL 2000 SP3 Windows 2000 server to a 2005 SP2 Windows 2003 server. I am trying to use detach and attach method (have tried both within Management Studio and...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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: 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...

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.