You are on page 1of 1

create directory dump_dir as '/expdp_bkp';

All dumps are sent to this area.


create directory log_dir as '/expdp_bkp';
All logs are sent to this area.

user exporting needs write priv and user importing needs read priv.

grant read,write on directory log_dir to system;


grant read,write on directory log_dir to scott;
grant read,write on directory impbkp to system;
impdp system/oracle123 full=Y directory=dump_dir dumpfile=expdat.dmp logfile=imp
dp.log buffer=1000000

You might also like