I will explain How to Find Table Size & Schema Size and Database Size in Oracle in this post. Oracle Table Size Check You can find out the Table size using the dba_segments views as follows. select segment_name,segment_type,round(SUM(BYTES)/power(2,20)) SEGMENT_SIZE_MB from dba_segments where segment_type='TABLE' and owner='TABLE_OWNER' and segment_name='<TABLE_NAME>'; If you don’t …
The post Find Table Size & Schema Size and Database Size in Oracle appeared first on IT Tutorial.