DEV Community

Fatih Şahin
Fatih Şahin

Posted on

Oracle All Table bytes

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

Top comments (0)