Get all dblink names? [message #122101] |
Thu, 02 June 2005 17:49 |
sridas
Messages: 5 Registered: March 2005
|
Junior Member |
|
|
Hello all,
This is a followup to my previous question, can someone tell me how to view the dblinks created in a database?
is there a slect * from v$....
that I can use to see the dblinks on the database.
thanks everyone
das
|
|
|
|
|
|
Re: Get all dblink names? [message #123036 is a reply to message #122899] |
Thu, 09 June 2005 10:59 |
alanm
Messages: 284 Registered: March 2005
|
Senior Member |
|
|
hi use the following sql
PROMPT database links
col name form a40 wrap
SELECT owner,
db_link,
username,
host,
created
FROM sys.dba_db_links
ORDER BY 1;
cheers
Alan
|
|
|