Estou exportando uma tabela específica para um esquema que pensei ser um 5,4 GB relativamente pequeno
SQL> select bytes/1024/1024 MB from user_segments where segment_name='TABLENAME';
MB
----------
5376
No entanto, EXPDP estima que o tamanho da exportação seja mais de 8 vezes esse tamanho em 46 GB:
Connected to: Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
Starting "SCHEMA"."SYS_EXPORT_TABLE_01": SCHEMA/********@DATABASE dumpfile=TABLENAME_20211028.dmp tables=TABLENAME
Estimate in progress using BLOCKS method...
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 45.87 GB
Por que a estimativa é muito maior do que o "tamanho da tabela"?
Porque a tabela pode ter segmentos LOB com nomes diferentes.
E você também deve verificar o tamanho desses segmentos.