Datapump Export - multiple EXCLUDE patterns for TABLE
I'm performing an export and I have two classes of tables (as in LIKE filters) that I wish to exclude. I've tried using multiple LIKE statements:
EXCLUDE=TABLE:"LIKE 'FILTER1%'"
EXCLUDE=TABLE:"LIKE 'FILTER2%'"
However this way it appears the second EXCLUDE overwrites the first and only tables matching FILTER2% are excluded.
Doing it like this has the same behavior and only tables matching FILTER2 are excluded
EXCLUDE=TABLE:"LIKE 'FILTER1%'",TABLE:"LIKE 'FILTER2%'"
The following are not syntactically correct but seemed worth trying
EXCLUDE=TABLE:"LIKE 'FILTER1%' OR 'FILTER2%'"
EXCLUDE=TABLE:"LIKE 'FILTER1%' OR LIKE 'FILTER2%'"
Is there any way to accomplish what I'm trying to do here? This is 10.2.0.2.
Thanks