Oracle All Table bytes

Fatih Şahin - Jan 9 '23 - - Dev Community
SELECT owner,
segment_name,
segment_type,
tablespace_name,
bytes/1048576 MB,
initial_extent,
next_extent,
extents,
pct_increase
FROM
DBA_SEGMENTS
WHERE
OWNER = 'UYUMLOG'

ORDER BY  bytes/1048576 DESC
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .