Title: How to create two db-links within one schema when global_names=true?
You can create as many dblinks as you want provided that the dblink name is the same as the global name of the database you connect to.
In your example:
Create public database link HR connect to HR identified by pwd_hr using whatever;
 
You can find the global name of the database by: select * from global_name; .
 
Yechiel Adar
Mehish
----- Original Message -----
Sent: Wednesday, January 08, 2003 11:44 AM
Subject: How to create two db-links within one schema when global_names=tr

Hi!

Is there a way to create two db-links within one schema when global_names=true?

e.g.
create public database link DB1 connect to hr identified by pwd_hr using 'DB1';
create public database link DB1 (???) connect to shipping identified by
pwd_shipping using 'DB1';

This is 8.1.7 on Solaris.

Thanks,
Helmut

Reply via email to