Is it possible to use multiple table in a query option of expdp? I am trying to do the following and it is failing with the message "Invalid identifier" i am using Oracle 10 version 10.2.0.3
Parameter file (x.par)
************************
DIRECTORY=DATA_PUMP_DIR
USERID=XYZ/XYZ@DB1
DUMPFILE=X.DMP
LOGFILE=X.LOG
CONTENT=DATA_ONLY
TABLES="TAB1"
QUERY= TAB1:"WHERE EXISTS (SELECT 1 FROM TAB2 WHERE TAB2.KEYID=TAB1.KEYID)"
expdp parfile=x.par
Error
******
ORA-00904: "TAB1"."KEYID": invalid identifier
Please share your thoughts
Thanks