Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: insert data from another database
In article <7lfchk$4om$1_at_newsread.do.de.uu.net>, "Markus Pesti" <pesti_at_htwk-leipzig.de> wrote:
You should do the description in de database where
is the table in wich
you want insert the data.
It can do it creating a database link:
CREATE [PUBLIC] DATABASE LINK name_of_the_link
[CONNECT TO username IDENTIFIED BY password]
USING 'service_name' ;
Where:
=> Public: Available to all the users. Without
this option, it's only
available to you.
=> name_of_the_link : If the server in which
is "anotherdatabase" is
not in the same domain that the databas in which
you want
insert the data, it must include
the domain of
anotherdatabase, (the domain is in de constant
DB_DOMAIN)
=> username: user login, a user who can do a
select to the
anothertable
=> password: password of that user
=>service_name: specification of the
anotherdatabase (see the
tnsnames.ora)
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
Received on Mon Jul 05 1999 - 10:26:48 CDT
![]() |
![]() |