DBA Hub

📋Steps in this guide1/1

Find largest table in oracle

As a DBA, we must know the largest tables in the database. There are many things that get impacted with the largest objects like DB performance, growth, index

oracle configurationintermediate
by OracleDba
12 views
1

Overview

As a DBA, we must know the largest tables in the database. There are many things that get impacted with the largest objects like DB performance, growth, index rebuild etc. The below query gives you the top  largest tables in oracle database.

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
SELECT * FROM
(select
SEGMENT_NAME,
SEGMENT_TYPE,
BYTES/1024/1024/1024 GB,
TABLESPACE_NAME
from
dba_segments
order by 3 desc );

Comments (0)

Please to add comments

No comments yet. Be the first to comment!