DBAsupport.com Forums - Powered by vBulletin
Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15

Thread: dblink for identical db names

  1. #11
    Join Date
    Nov 2001
    Posts
    335
    Why valley_heart, not just valley?
    One, who thinks that the other one who thinks that know and does not know, does not know either!

  2. #12
    Join Date
    Nov 2001
    Posts
    335
    Run this in both databases

    select name ,value from v$parameter where name like '%global%';

    select * from global_name;

    I beleive you will have to change your global name to
    tcs.10.10.4.4.

    One, who thinks that the other one who thinks that know and does not know, does not know either!

  3. #13
    Join Date
    Apr 2001
    Location
    Louisville KY
    Posts
    295
    Given global_names=false then the problem is you need to put community in the tname.

    Community is in tnsnames.ora and should be the same on both sides. I believe it is usually tcp.world and the entry name would be valley.world=.... not valley=...

    Some releases and configurations of SQL*NET could get by without the '.world' everywhere but the tnsnames.ora file.
    Joseph R.P. Maloney, CSP,CDP,CCP
    'The answer is 42'

  4. #14
    Join Date
    Sep 2001
    Location
    Fort Smith
    Posts
    184
    create the database links using the definitions given to the connect descriptor in the tnsnames.ora file.

    create public database link ARC connect to SCOTT identified by tiger using '(DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sridevi)(PORT = 1521))
    )
    (CONNECT_DATA =
    (SERVICE_NAME = ARC)
    )
    )'
    sonofsita
    http://www.ordba.net

  5. #15
    Join Date
    Feb 2000
    Location
    NJ, United States
    Posts
    250
    sonofsita, your example looked very tempting, I tried it but doesn't work gives the same loopback error.

    I will try the other options in a little while.

    THanx all of you
    KN

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width