Check the list of all objects present in Oracle Database.

Find the list of objects present in Oracle Database.

DBA_ refer to all objects in database, ALL_ refer to which object having access privilege’s to user plus own created objects, USER_ refer to only own object created you can see.

SELECT * FROM dba_objects;
OR
SELECT * FROM ALL_OBJECTS;
OR
SELECT * FROM USER_OBJECTS;

Find the objects present in particular schema in Oracle

SELECT * FROM dba_objectw where owner = 'schema_name';

List all the dictionary views:

SELECT * FROM dict;

Find the list of all tables present in Oracle Database

Select * from dba_tables;
OR
SELECT * FROM ALL_TABLES:
OR
SELECT * FROM USER_TABLES;

List of all tables columns in Oracle Database

SELECT * FROM all_tab_columns
 WHERE table_name = :tname;

This entry was posted in Oracle on by .

About SandeepSingh

Hi, I am working in IT industry with having more than 15 year of experience, worked as an Oracle DBA with a Company and handling different databases like Oracle, SQL Server , DB2 etc Worked as a Development and Database Administrator.

2 thoughts on “Check the list of all objects present in Oracle Database.

  1. Dave B

    Great work, many thanks!
    I think there is a minor typo though:

    Find the objects present in particular schema in Oracle

    SELECT * FROM dba_objectw where owner = ‘schema_name’;

    should be:
    SELECT * FROM dba_objects where owner = ‘schema_name’;

    Keep up the great work!

    Liked by 1 person

    Reply

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.