Path: dp-news.maxwell.syr.edu!spool.maxwell.syr.edu!drn.maxwell.syr.edu!news.maxwell.syr.edu!postnews.google.com!g49g2000cwa.googlegroups.com!not-for-mail
From: "Billy" <vslabs@onwe.co.za>
Newsgroups: comp.databases.oracle.server
Subject: Re: data transfer using dial-up
Date: 7 Jul 2005 00:22:52 -0700
Organization: http://groups.google.com
Lines: 36
Message-ID: <1120720972.156137.255610@g49g2000cwa.googlegroups.com>
References: <50F39B75DB340@DBMonster.com>
NNTP-Posting-Host: 198.54.206.91
Mime-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
X-Trace: posting.google.com 1120720978 22732 127.0.0.1 (7 Jul 2005 07:22:58 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: Thu, 7 Jul 2005 07:22:58 +0000 (UTC)
In-Reply-To: <50F39B75DB340@DBMonster.com>
User-Agent: G2/0.2
Complaints-To: groups-abuse@google.com
Injection-Info: g49g2000cwa.googlegroups.com; posting-host=198.54.206.91;
   posting-account=wp5kwAwAAAAK-35tPJYPGFtR9KGfcge6
Xref: dp-news.maxwell.syr.edu comp.databases.oracle.server:246754

\ wrote:
> i have a distributed system. From where i have to bring all data to one
> database. All most all database is in oracle 10g and winxp. Now, the only way
> to transfer data is using dial-up. So, what should i do to transfer the data
> in reliable ways.
>
> Should i configure any gateway server or what else. Any help in this would be
> highly appreciable...
> any links would also be helpful..

Not really an Oracle question.. unless you want to discuss methods of
propogating data from one Oracle database to another.

The dial-up transport mechanism is an o/s issue. The physical protocol
is usually PPP (Point to Point Protocol) these days - used to be SLIP
and others in the past.

TCP/IP runs over PPP. TCP is inherantly a reliable and robust Internet
Protocol. Oracle uses TCP for network connectivity. Oracle itself
supports features like two phased commits for dealing with reliability
and consistency of distributed data transactions.

So there's nothing really on the Oracle side that makes a dialup
connection different. Oracle does not know the difference between a
56KB PPP connection and a 10Gbit Infiniband SDP connection. Nor does it
care as it is a o/s, network interface driver and protocol stack issue.

Of course, the issue on the app developer side is dealing with a very
small pipe for data exchange with other databases. So it makes sense to
reduce the amount of data that is to be exchanged. And ensure that
special attention is paid to exception handling as the likelihood of
Oracle exceptions (caused by dialup failures and errors) are increased.

--
Billy

