I want to export a table from a database located on one server to another database located on another server.
Here is my setup:
- Oracle 11g database: [email protected]
- Oracle 11g XE: [email protected]
The command that I found is used to export/import table within the same database:
expdp user/password dumpfile=hr.dmp directory=dmpdir schemas=hr logfile=
hr_exp.log
impdp user/password dumpfile=hr.dmp directory=dmpdir schemas=hr logfile=hr_imp.log
Any idea or tips on how to solve this?