Is there a command line interface in SQL Developer to run data pump expdp/impdp just like it's run on a OS?
Say for example, I want to run the command below. Is there a way I can run this in SQL Developer?
expdp orcl DIRECTORY= DATA_PUMP_DIR DUMPFILE= dumpfile_%U.dmp parallel=2 SCHEMAS= orcl;
I have no interest in using the sql dev datapump wizard.