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
 Transact-SQL (2000)
 Transfer data between servers

Author  Topic 

fvinagre
Starting Member

29 Posts

Posted - 2004-10-11 : 04:12:19
--------------------------------------------------------------------------------

Dear DBAS

I would like, transfer data from a simple query to other database in other server without link the destination server


Regards
Fernando

jen
Master Smack Fu Yak Hacker

4110 Posts

Posted - 2004-10-11 : 04:30:55
quote:
Originally posted by fvinagre

--------------------------------------------------------------------------------

Dear DBAS

I would like, transfer data from a simple query to other database in other server without link the destination server


Regards
Fernando




as in no link?
backup the database, restore into the target server, query the data you need.

or you mean using DTS? but this also uses linked server
Go to Top of Page

spirit1
Cybernetic Yak Master

11752 Posts

Posted - 2004-10-11 : 04:31:08
without link??

you need either linked servers (look it up in BOL = Books OnLine = SQL help)
or backup db, burn in on cd and take to the remote server and restore it there from the cd...

Go with the flow & have fun! Else fight the flow
Go to Top of Page

spirit1
Cybernetic Yak Master

11752 Posts

Posted - 2004-10-11 : 04:31:35
so close...



Go with the flow & have fun! Else fight the flow
Go to Top of Page

jen
Master Smack Fu Yak Hacker

4110 Posts

Posted - 2004-10-11 : 04:32:36
well i think our connection is improving?
Go to Top of Page

fvinagre
Starting Member

29 Posts

Posted - 2004-10-11 : 05:15:49
I only want to know if is posible make another using Transact SQL from Query analizer or other program. To copy data from a query from one server to other server. Without using linked servers funcionality on SQL Server.
Go to Top of Page

jen
Master Smack Fu Yak Hacker

4110 Posts

Posted - 2004-10-11 : 05:21:41
quote:
Originally posted by fvinagre

I only want to know if is posible make another using Transact SQL from Query analizer or other program. To copy data from a query from one server to other server. Without using linked servers funcionality on SQL Server.



you can produce the DML for the data then apply the file to the other server. but otherwise, based on my limited experience, there must be a link if you're using qa and issuing some queries.
Go to Top of Page

mwjdavidson
Aged Yak Warrior

735 Posts

Posted - 2004-10-11 : 05:28:44
You can do it with a DTS Transform Data Task without linked servers.

Mark
Go to Top of Page
   

- Advertisement -