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
 General SQL Server Forums
 New to SQL Server Programming
 Copying data from one database table to other

Author  Topic 

jim_cool
Starting Member

43 Posts

Posted - 2005-10-25 : 00:30:43
hi all

i have two databases on two different machines.

both databses r having same names.

i want to copy data from the table in other database to table in databse on my machine .

how can i do this.

i will be very thankful to receive help.

activecrypt
Posting Yak Master

165 Posts

Posted - 2005-10-25 : 01:41:06
Hi,
you can do it using
1). IMPORT / EXPORT WIZARD
2). DTS
3). BCP in / out

HTH

-----------------------------------------------------------
MSSQL Server encryption software http://www.activecrypt.com
Go to Top of Page

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2005-10-25 : 02:00:53
or using Linked Server

Insert into yourTable(columns) Select columns from Server.Db.owner.Table

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page
   

- Advertisement -