dear all,
i am using oracle 12c enterprise edition on windows server.
i want to use EXPDP to export scott schema with deptno=10 records only from emp and dept.
i use the folllowing command.
C:\Users\Welcome>expdp system/oracle@pdb schemas=scott directory=TEST_DIR dumpfile=scott.dmp logfile=scott.log query=SCOTT.EMP,SCOTT.DEPT:'"WHERE deptno=10"';
it throw the following error
LRM-00101: unknown parameter name 'deptno'
how can i fix it?
thank you.