vote up 1 vote down star

The typical syntax for creating a db link is as follows:

create database link remote_db_link 
connect to remote_user 
identified by remote_password 
using 'remote_db'

But I'd like my DB link owned by another account after it's created. Is there a way to do this?

The following does NOT work:

create database link anotheruser.remote_db_link 
connect to remote_user 
identified by remote_password 
using 'remote_db'
flag

4 Answers

vote up 6 vote down check

Restrictions on DBLinks - You cannot create a database link in another user's schema, and you cannot qualify dblink with the name of a schema.

link|flag
:-( I was afraid of that. Thanks all for your time. – Jeff Jun 12 at 18:36
vote up 5 vote down

Sathya is correct, the syntax does not allow you to create a database link in another schema. Let's assume that you do have privilege to create a procedure in another schema, there is a workaround:

    create procedure anotheruser."tmp_doit_200906121431"
    is
    begin
      execute immediate '
        create database link remote_db_link 
        connect to remote_user 
        identified by remote_password 
        using ''remote_db'' ';
    end;
    /
    begin
      anotheruser."tmp_doit_200906121431";
    end;
    /
    drop procedure anotheruser."tmp_doit_200906121431"
    /

(This allows the "create database link" statement to be executed as the owner of the procedure.)

link|flag
vote up 1 vote down

Um, that's because you're trying to create an object (dblink) in someone else's schema. Why not just create it as a PUBLIC database link?

link|flag
1  
I'd like only one user to have access to the link. But that user doesn't have access to create it's own db link... (and the DB has gone home for the day) – Jeff Jun 12 at 18:33
vote up 0 vote down

Spencer that is a beautiful trick, I have to face this problem everytime I need to create a dblink for another user, a beautiful and creative solution.

Tks for sharing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.