Frage

How to exclude all statistics while exporting data using Oracle Data Pump API (DBMS_DATAPUMP package)?

War es hilfreich?

Lösung

Answered in OTN Discussion Forum

dbms_datapump.METADATA_FILTER(
  handle = your_handle_here,
  name = 'EXCLUDE_PATH_LIST',
  value = 'STATISTICS'
);
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top