In Oracle, when we want to know how much a table occupies disk we can query the dba_segments dictionary.
SELECT segment_name, segment_type, bytes/1024/1024 MB
FROM dba_segments
WHERE segment_type='TABLE' and segment_name='<nome-tabel...
asked by
10.06.2016 / 20:40