Checks for all the table partisions(space) details present under a specific TABLE_NAME

select
    owner,
    segment_name,
    partition_name,
    segment_type,
    bytes / 1024/1024 "MB" 
from
    dba_segments --System Table
where 
    lower(SEGMENT_NAME) like 'TABLE_NAME%'