Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Can size of index tablespace be greater than table tablespace?

MohammedImranJul 11 2016 — edited Jul 11 2016

Hi,

I have a schema with about 180 tables. The sizes of tables ranges from few hundred to millions of rows. There are two tablespace for these schema, one for actual data and the other for indexes ONLY. After loading entire data when I queried DBA_SEGMENTS table I found the size of index type space to be greater than table type. Is this correct? If yes then How is it that the size of part(index = few columns of table) of a table greater than size of actual table?.

select ((sum(bytes))/1024)/1024 "SIZE IN MB",tablespace_name,owner,segment_type from DBA_SEGMENTS group by tablespace_name,owner,segment_type

SIZE IN MBTABLESPACE_NAME
OWNER
SEGMENT_TYPE
16495.125TABLE_DATABATABLE
16666.875TABLE_INDEXBAINDEX

Thanks,

Imran,

This post has been answered by asifkabirdba on Jul 11 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 8 2016
Added on Jul 11 2016
22 comments
8,318 views