datapump import
I have a export dumpfile (created by export data pump) and I need to import it into a remote database ( all databases are 11.2). I am running the following command
impdp /@REMOTE DUMPFILE=FILENAME.dmp FULL=Y TABLE_EXISTS_ACTION=REPLACE NOLOGFILE=Y
I am getting an error that dumpfile is not found. Probably because datapump is expecting it to be on the database server. But in my case it is not there.
Is there a way to work around this? In other words can I import into a remote database and keep the file on my local server?