Which statement is true about the execution of the command?

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?

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.



Leave a Reply 5

Your email address will not be published. Required fields are marked *


tk

tk

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

Moahmed Amin

Moahmed Amin

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

teppi

teppi

I’m sure Ans C is correct.

teppi

teppi

Sorry Ans D is correct!