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 2000 Forums
 Import/Export (DTS) and Replication (2000)
 Archive Service

Author  Topic 

AskSQLTeam
Ask SQLTeam Question

0 Posts

Posted - 2006-02-17 : 08:39:54
Aanand writes "I have to write stored procedure to copy the data from one database to other database.Both the database at the different machine and both are on different domain. If any one have solution then please help me regarding."

RickD
Slow But Sure Yak Herding Master

3608 Posts

Posted - 2006-02-17 : 10:22:57
Look at the copy SQL Server Objects task in DTS..
Go to Top of Page

Kristen
Test

22859 Posts

Posted - 2006-02-17 : 13:48:36
Hi Aanand, Welcome to SQL Team!

Any of these sound promising?

Backup / Restore - possibly using log shipping

Replication

BCP data out, FTP to other machine, BCP back in at other machine

Linked server - then just use something like:

INSERT INTO RemoteServer.RemoteDatabase.dbo.MyTable
SELECT *
FROM LocalDatabase.dbo.MyTable

Kristen
Go to Top of Page
   

- Advertisement -