Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 Create Setup File into Installer

Author  Topic 

Delinda
Constraint Violating Yak Guru

315 Posts

Posted - 2009-08-31 : 23:35:49
I've Ticketing Database in Server A. I want to move this Ticketing Database into Server B.

In Server B, this Ticketing Database is a fresh data without any transaction except pre-loaded data such as Master Table data.

Did any way to create this process into Installer or another good way?

YellowBug
Aged Yak Warrior

616 Posts

Posted - 2009-09-01 : 06:42:37
There are a few options:
1. BCP / batch file
2. Data Import/Export Wizard
3. SSIS

How many tables? What is the volume of data? Do you need to store the data in a source control system?
Go to Top of Page

harsh_athalye
Master Smack Fu Yak Hacker

5581 Posts

Posted - 2009-09-01 : 06:58:20
You can always script a database if you want to just move schema and run the script on destination server.

Harsh Athalye
India.
"The IMPOSSIBLE is often UNTRIED"
Go to Top of Page

Peter99
Constraint Violating Yak Guru

498 Posts

Posted - 2009-09-01 : 12:47:08
Backup source database and restore on destination
Go to Top of Page

Delinda
Constraint Violating Yak Guru

315 Posts

Posted - 2009-09-02 : 11:15:24
quote:
Originally posted by YellowBug

There are a few options:
1. BCP / batch file
2. Data Import/Export Wizard
3. SSIS

How many tables? What is the volume of data? Do you need to store the data in a source control system?



Yes, I need to store the data in a source control system. How? Any idea?
Go to Top of Page
   

- Advertisement -