Re: Query to another server

2004-02-17 Thread Chris Nolan
-- From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 17, 2004 2:54 PM Subject: Query to another server Is it possible to query one server from another even if those servers are in diferent machines at diferent locations? for example: selec

Re: Query to another server

2004-02-17 Thread fbeltran
<[EMAIL PROTECTED]> 17/02/2004 12:52 a.m. To Terence <[EMAIL PROTECTED]> cc [EMAIL PROTECTED] Subject Re: Query to another server You might be able to cheat and replicate the required database to the local machine. Regards, Chris Terence wrote: >you'll need to create tem

Re: Query to another server

2004-02-16 Thread Chris Nolan
To: <[EMAIL PROTECTED]> Sent: Tuesday, February 17, 2004 2:54 PM Subject: Query to another server Is it possible to query one server from another even if those servers are in diferent machines at diferent locations? for example: select * from localtable left join remoteserver.remotedat

Re: Query to another server

2004-02-16 Thread Terence
you'll need to create temporary tables in one of the servers based on the results of the other and then join. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 17, 2004 2:54 PM Subject: Query to another server Is it poss

Re: Query to another server

2004-02-16 Thread Karam Chand
I dont think so :( Karam --- [EMAIL PROTECTED] wrote: > Is it possible to query one server from another even > if those servers are > in diferent machines at diferent locations? > > for example: > > select * from localtable left join > remoteserver.remotedatabase.remotetable > > where localta

Re: Query to another server

2004-02-16 Thread Jeremy Zawodny
On Mon, Feb 16, 2004 at 11:54:43PM -0700, [EMAIL PROTECTED] wrote: > Is it possible to query one server from another even if those servers are > in diferent machines at diferent locations? > > for example: > > select * from localtable left join remoteserver.remotedatabase.remotetable > > where

Query to another server

2004-02-16 Thread fbeltran
Is it possible to query one server from another even if those servers are in diferent machines at diferent locations? for example: select * from localtable left join remoteserver.remotedatabase.remotetable where localtable.key = remoteserver.remotedatabase.remotetable.key FBR