Das ist doch mal eine gute Idee einfach die Audit Tabelle zu kompremeiren, wenn man schon eine Option hat.
SQL> select table_name, compression, compress_for from user_tables where table_name='AUD$'; TABLE_NAME ------------------------------------------------ COMPRESS COMPRESS_FOR -------- ------------------------------ AUD$ DISABLED SQL> ALTER TABLE SYS.AUD$ row store compress advanced; Table altered. SQL> select table_name, compression, compress_for from user_tables where table_name='AUD$'; TABLE_NAME ------------------------------------------------ COMPRESS COMPRESS_FOR -------- ------------------------------ AUD$ ENABLED ADVANCED
Viel Erfolg!