Examine the command:
$expdp SYSTEM FULL=YES DUMPFILE=dpump_dir1:fulll%U.dmp, dpump_dir2:full2% U.dmp,
dpump_dir3:full3%U.djnp FILESIZE=400M PARALLEL=3 JOB_NAME=expfull
Which statement is true about the execution of the command?
A.
It fails because the log file parameter is not specified.
B.
It fails because no absolute path is specified for the log file and dump file.
C.
It succeeds and exports the full database, simultaneously creating three copies of dump files at three
different locations.
D.
It succeeds and exports the full database, simultaneously creating three dump files at three different
locations, but the total number of dump files can exceed three.
ans C?
before
create directory dpump_dir1 as ‘path’;
create directory dpump_dir2 as ‘path’;
create directory dpump_dir3 as ‘path’;
after
$expdp SYSTEM FULL=YES DUMPFILE=dpump_dir1:fulll%U.dmp, dpump_dir2:full2% U.dmp,dpump_dir3:full3%U.djnp FILESIZE=400M PARALLEL=3 JOB_NAME=expfull
Ans C
Answer is D , it will do one export for the database in three locations for parallel .
It will not make 3 copies from the exported database
I’m sure Ans C is correct.
Sorry Ans D is correct!