How to create a DB Link in Autonomous Database?

To discuss and share Oracle clouds related topics & features of Software as a Service (SaaS), Platform as a Service (PaaS), Infrastructure as a Service (IaaS). We will try to cover Oracle Autonomous database, EBS, etc.
Post Reply
admin
Posts: 2062
Joined: Fri Mar 31, 2006 12:59 am
Location: Pakistan
Contact:

How to create a DB Link in Autonomous Database?

Post by admin »

Hi,
If you want to create a DB Link from Autonomous database instance to your local on-premises database 11g.

Note: Target database must have SSL certificate installed and configured. In my case I have digicert installed.

1-

$ cd <location of wallet>
$ orapki wallet display -wallet .

Subject: CN=*********,O=*******\,,L=*******,C=**
Trusted Certificates:
Subject: CN=DigiCert Global Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US
Subject: CN=DigiCert SHA2 Secure Server CA,O=DigiCert Inc,C=US

2- I added the following entry in my listener.ora on my target database,

(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=*******)(PORT=1522))) << this host is having public IP so access over the internet and port is allowed on my firewall.

3. Copy cwallet.sso file from wallet folder and upload to [url http://www.erpstuff.com/forums/viewtopi ... f5657edd66]Object Store[/url].

BEGIN
DBMS_CLOUD.CREATE_CREDENTIAL(
credential_name => 'OBJ_STORE_CRED',
username => 'admin@erpstuff.com',
password => '*************;
END;

BEGIN
DBMS_CLOUD.GET_OBJECT(
credential_name => 'OBJ_STORE_CRED',
object_uri => 'https://objectstorage.us-ashburn-1.orac ... wallet.sso',
directory_name => 'DATA_PUMP_DIR');
END;

4- Check if your file upload.
SELECT * FROM table(dbms_cloud.list_files('DATA_PUMP_DIR'));

5- Now create a credential of your local user to which you will access using DB Link,

BEGIN
DBMS_CLOUD.CREATE_CREDENTIAL(
credential_name => 'DB_LINK_CRED',
username => 'XXXXXX',
password => '********'
);
END;

Note: to drop credentials use the following command,

BEGIN
DBMS_CLOUD.DROP_CREDENTIAL(
credential_name => 'DB_LINK_CRED' );
END;

BEGIN
DBMS_CLOUD_ADMIN.CREATE_DATABASE_LINK(
db_link_name => 'ERPSTUFF',
hostname => 'XXX.XXX.XXX.XXX', << Public ip or name of your server
port => '1522',
service_name => 'my11gdb.erpstuff.com',
ssl_server_cert_dn => CN=*********,O=*******\,,L=*******,C=**, << as per step 1 above.
credential_name => 'DB_LINK_CRED',
directory_name => 'DATA_PUMP_DIR');
END;

BEGIN
DBMS_CLOUD_ADMIN.DROP_DATABASE_LINK(db_link_name => 'ERPSTUFF' );
END;

to test db link,

select sysdate from dual@ERPSTUFF;
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest