DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: database link

  1. #1
    Join Date
    Apr 2002
    Posts
    29
    could anyone please tell me the steps in creating a database lonk ie there is a remote database and i would like to create a link in the local database server ...also what does the client needs to do once the lonk has been created

  2. #2
    Join Date
    Dec 2000
    Location
    Virginia, USA
    Posts
    455


    create database link TEST
    connect to scott identified by tiger
    using 'MYTEST';

    to run the query
    select * form emp@test;

    for second part of your question
    page 520 of Oracle8 Complete Reference.....

    [Edited by irehman on 07-29-2002 at 01:28 PM]

  3. #3
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Jeff Hunter

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