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

Thread: transfer of data from one machine to another

  1. #11
    Join Date
    May 2001
    Posts
    736
    What is the entry
    NAMES.DEFAULT_DOMAIN in sqlnet.ora file.If it is not commented out then
    suppose it is like NAMES.DEFAULT_DOMAIN = world add this 'world ' to your tnsnames.ora file connection string like

    orcl.word =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.77)(PORT = 1521))
    )
    (CONNECT_DATA =
    (SERVICE_NAME = orcl)
    )
    )

  2. #12
    Join Date
    Nov 2002
    Location
    Geneva Switzerland
    Posts
    3,142
    Unless you're working in a complex, multi-domain set up (in which case, you don't need help from me!), I would suggest getting rid of the NAMES.DEFAULT_DOMAIN from sqlnet.ora

  3. #13
    Join Date
    Feb 2001
    Posts
    295
    1) To easily understand db links, just imagine the local server as a "client", and the remote server as the "server". It's the same NET8. You may have the tnsnames configuration on your client or anywhere else, just copy it to the local server and test the db link again.

    2) Your link has the name "md". If you have initialization parameter GLOBAL_NAMES set to TRUE, the db link name should be the same as the remote server. Maybe that's your problem, think about changing that parameter or recreating the db link as ORCL.WORLD.
    An ounce of action is worth a ton of theory.
    —Friedrich Engels

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