All Posts

Query to find Table size

SELECT owner, table_name, TRUNC (SUM (bytes) / 1024 / 1024) MB
    FROM (SELECT segment_name table_name, owner, bytes
            FROM dba_segments
           WHERE segment_type IN ('TABLE', 'TABLE PA...