Quantcast
Channel: Doyensys Allappsdba Blog..
Viewing all articles
Browse latest Browse all 1640

Article 12

$
0
0
Fixing dblink issue:-

create database link ats_ora connect using <username> identified by <password> using '<dblink name>';

place the target database tns entry in source database.

Accessing the dblink,

we should be able to accessing the dblink using both the names as below.

select * from dual@ats_ora;

select * from dual@ats_ora.world;

Error:

dblink name is expected.

to fix the issue we have to change the global database name.

alter database rename global_name to <dbname.world>;

Then it will work:

select * from dual@ats_ora;

select * from dual@ats_ora.world;





Viewing all articles
Browse latest Browse all 1640

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>