/ Published in: SQL
See the DBLinks that you have created in the past
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
--Create DB Links CREATE DATABASE link "BUSDEV01" CONNECT TO <uname> IDENTIFIED BY "<PASSWORD>" USING 'BUSDEV' --View DB Links SELECT * FROM ALL_DB_LINKS WHERE USERNAME = '<uname>' --Delete DB Links DROP DATABASE LINK BUSUAT;
URL: http://www.mydigitallife.info/2006/03/09/view-and-retrieve-oracle-database-link-details/