top of page

Find Database Objects in Oracle

  • Writer: Rumesh Aponso (RMAX)
    Rumesh Aponso (RMAX)
  • Dec 10, 2024
  • 1 min read
SELECT DISTINCT object_type
FROM   all_objects;
ree
SELECT t.*
FROM   all_objects t
WHERE  t.object_type IN ('VIEW', 'TABLE', 'INDEX', 'MATERIALIZED VIEW', 'SYNONYM', 'FUNCTION', 'TRIGGER');
ree


Comments


Copyright © 2025 RMAXOneNote

  • Online CV
  • LinkedIn
  • Youtube
  • GitHub
  • Blogger
bottom of page