Currently i'm using expdp and impdp
to export and import my schema in my pc. i have wrote two scripts to export and import and run that scripts using batch file when i need.
Now i'm going to host my application on a Remote server. i need to backup schema in my Remote server as i'm doing on my pc.(using scripts, call the scripts using batch file when i need).
Currently i'm using below syntax
expdp scott/tiger schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=expdpSCOTT.log
impdp scott/tiger schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=impdpSCOTT.log
But how could i export and import from Remote server ?