Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: Database Links
Check your init.ora for the global_names = false and make sure this is not commented out. This may help you out and make sure that you create the link public, at least for the test.
Milan Smederevac wrote:
> I have been trying to connect via DataBase link, from one DB, I 'm
> going to call it A (local db), to anoter DB B (remote one).
> First thing to do was to create connection, I have added to
> tnsnames.ora next lines:
> test1.world =
> (DESCRIPTION =
> (ADDRESS_LIST =
> (ADDRESS =
> (COMMUNITY = tcp.world)
> (PROTOCOL = TCP)
> (Host = 172.16.100.201)
> (Port = 1521)
> )
> (ADDRESS =
> (COMMUNITY = tcp.world)
> (PROTOCOL = TCP)
> (Host = 172.16.100.201)
> (Port = 1526)
> )
> )
> (CONNECT_DATA = (SID = TESTER)
> )
> )
> When I try to connect to TESTER db with sqlplus I was successful to
> connect to DB B ( like: connect useer/pwd_at_test1).
> But when I create DB link like:
>
>
![]() |
![]() |