how to drop a database link? [message #66913] |
Wed, 12 March 2003 10:20 |
Bushan
Messages: 11 Registered: February 2003
|
Junior Member |
|
|
Hi I am using the following to drop a database link,
DROP DATABASE LINK dblink_name;
But Oracle says
ORA-02024: database link not found
If I want to see a list of all database links what table should I query?
Please help?
|
|
|
|
Re: how to drop a database link? [message #67217 is a reply to message #66913] |
Sat, 14 February 2004 03:20 |
Nitin Arora
Messages: 7 Registered: February 2004
|
Junior Member |
|
|
Hi there,
U can connect to system and query on table "all_db_links". This table will give u details of all database links in the database. Also u need to specify word PUBLIC in the syntax of dropping the link in case u are not the owner and the link is a public link.
U can drop the link by following command
drop public database link <db_link name>;
Regards
Nitin
|
|
|