i am getting ora-39002,39070,39088
I have created the directory and granted permission read write on that directory.
any help
Main Topics
Browse All TopicsI have multiple dimpfiles to import dumpfile=file1.file2,file3
I am using
impdp user/pass directory=xyz dumpfile=(file1.dmp,file2.
logfile=c:\eur.log remap_schema=user1:user2.
do u see any fault in the above syntax?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
In this case I use
dumpfile=file%U.dmp
Also you have:
1. To create logical directory (SYS user)
2. To give READ/WRITE writes over the directory to nonSYS user (if it will use the directory)
3. To ensure that the directory physicall exists in the OS file system
4, To make sure that that there is no log file with the name you mentioned
5. To make sure the .dmp files are really there
6. To use this only beginning Oracle 10g Release 2
create or replace directory dumpdir as 'c:\';
grant read,write on directory dumpdir to scott;
% mkdir c:\
Business Accounts
Answer for Membership
by: ppinonPosted on 2009-10-27 at 05:30:22ID: 25671620
Try without the () as following
mp,file3.d mp,file4.d mp,file5.d mp logfile=c:\eur.log remap_schema=user1:user2
impdp user/pass directory=xyz dumpfile=file1.dmp,file2.d