Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ALL_Objects & DATABASE LINK

sql_coderFeb 9 2017 — edited Feb 12 2017

Hello,

anyone knows, why the ALL_Objects View does not show database Links. I tried following Views:

SELECT * FROM USER_DB_LINKS; -- show Database Links

SELECT * FROM ALL_DB_LINKS WHERE Owner = 'SCHEMANAME'; -- show Database Links

SELECT * FROM USER_Objects WHERE Object_Type = 'DATABASE LINK'; -- show Database Links

SELECT * FROM ALL_Objects WHERE Owner = 'SCHEMANAME' AND Object_Type = 'DATABASE LINK'; -- dont show Database Links

SELECT * FROM DBA_Objects WHERE Owner = 'SCHEMANAME' AND Object_Type = 'DATABASE LINK'; -- show Database Links

sql_coder

This post has been answered by John Stegeman on Feb 9 2017
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 12 2017
Added on Feb 9 2017
32 comments
7,033 views