Download Oracle Database 12cR2 Administration.1z0-072.CertKiller.2019-06-04.33q.vcex

Vendor: Oracle
Exam Code: 1z0-072
Exam Name: Oracle Database 12cR2 Administration
Date: Jun 04, 2019
File Size: 449 KB

How to open VCEX files?

Files with VCEX extension can be opened by ProfExam Simulator.

Demo Questions

Question 1
Which three failures require intervention for recovery? (Choose three.)
  1. a user error such as dropping the wrong table
  2. network interface card (NIC) failure
  3. user process failure
  4. statement failure
  5. media failure
Correct answer: ACE
Question 2
In the ORCL database, USER1 has unlimited quota on TBS1 and TBS2.  
The USER1.EMP table with primary key EMP_ENO_PK resides in TBS1.  
USER1.EMP_IDX residing in TBS2 is an index on U1.EMP.ENAME. 
TBS1 is exported from ORCL by using this command:
[oracle@host01 ~]$ expdp system/oracle tablespace=tbs1 directory=exp_dir dumpfile=tbs1.dmp 
The TESTDB database has a TBS1 tablespace but no TBS2. 
The SYSTEM user in TESTDB executes this command:
[oracle@host01 ~]$ impdp system/oracle directory=exp_dir dumpfile=u1.dmp tablespace=tbs1 
What is the result and why?
  1. It imports EMP, EMP_ENO_PK, and the unique index associated with EMP_ENO_PK and EMP_IDX.
  2. It imports only EMP, EMP_ENO_PK, and the unique index associated with EMP_ENO_PK.
  3. It fails because TESTDB has TBS1.
  4. It imports only EMP.
  5. It fails because TESTDB does not have TBS2 to create EMP_IDX.
Correct answer: B
Question 3
In your database, you create a user, HR, and then execute this command:
GRANT CREATE SESSION TO hr WITH ADMIN OPTION; 
Which three actions can HR perform? (Choose three.)
  1. Grant the CREATE SESSION privilege without ADMIN OPTION to other users.
  2. Grant the CREATE SESSION privilege with ADMIN OPTION to other users.
  3. Execute DML statements in the HR schema.
  4. Log in to the database instance.
  5. Revoke the CREATE SESSION privilege from other users.
  6. Execute DDL statements in the HR schema.
Correct answer: BDE
Explanation:
Reference: https://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9013.htm
Reference: https://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9013.htm
Question 4
TBS1 is a permanent user-defined tablespace created with Oracle Managed Files (OMF). 
Examine this command:
DROP TABLESPACE tbs1; 
Which is required to ensure that TBS1 is dropped and its datafiles are deleted from their file system?
  1. The INCLUDING CONTENTS AND DATAFILES clause must be added to the command.
  2. TBS1 must be placed in READ ONLY state.
  3. Objects in TBS1 must not be in use when the command is executed.
  4. TBS1 must not contain any temp files.
  5. DB_CREATE_FILE_DEST must refer to an Oracle Automatic Storage Management (ASM)disk group.
Correct answer: A
Explanation:
Reference: https://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9004.htm
Reference: https://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9004.htm
Question 5
Which three types of files are created by expdp operations? (Choose three.)
  1. SQL files
  2. dump files
  3. reject files
  4. log files
  5. input data files
  6. bad files
  7. control files
Correct answer: ABD
Explanation:
Reference: https://docs.oracle.com/cd/B28359_01/server.111/b28319/dp_export.htm#g1022624
Reference: https://docs.oracle.com/cd/B28359_01/server.111/b28319/dp_export.htm#g1022624
Question 6
DATADIR1 and DATADIR2 are database directory objects. 
Examine this command:
[oracle@host01 ~] expdp system/oracle \ 
> FULL=y \ 
> DUMPFILE=datadir1:full%U.dmp, datadir2: full2%U.dmp \
> FILESIZE=2G \ 
> PARALLEL=4 \ 
> LOGFILE= datadir1:/expfull.log
> JOB_NAME= expfull 
Which two are true about the expdp operation? (Choose two.)
  1. It creates a dump file for the entire database.
  2. It fails if the total size of the dump file is more than 2 GB.
  3. It creates a dump file only for objects in the SYSTEM schema.
  4. It creates a master table to store details of the export operation.
  5. It starts only when four worker processes are available.
Correct answer: AE
Explanation:
Reference: https://docs.oracle.com/database/121/SUTIL/GUID-1E134053-692A-4386-BB77-153CB4A6071A.htm#SUTIL887
Reference: https://docs.oracle.com/database/121/SUTIL/GUID-1E134053-692A-4386-BB77-153CB4A6071A.htm#SUTIL887
Question 7
Which two are true about RETENTION GUARANTEE? (Choose two.)
  1. It is a tablespace attribute.
  2. It prevents FLASHBACK DATABASE operation failure.
  3. It prevents out-of-space errors.
  4. It prevents “Snapshot too old” errors.
  5. It is a static parameter.
Correct answer: AB
Question 8
Which two can you use to recover a dropped table? (Choose two.)
  1. FLASHBACK QUERY
  2. FLASHBACK DATABASE
  3. FLASHBACK TRANSACTION
  4. FLASHBACK TABLE TO SCN
  5. FLASHBACK DROP
Correct answer: DE
Explanation:
Reference: https://docs.oracle.com/database/121/ADMQS/GUID-1DE547D1-3AF0-4269-8BAA-4C298EC05905.htm#GUID-1DE547D1-3AF0-4269-8BAA-4C298EC05905
Reference: https://docs.oracle.com/database/121/ADMQS/GUID-1DE547D1-3AF0-4269-8BAA-4C298EC05905.htm#GUID-1DE547D1-3AF0-4269-8BAA-4C298EC05905
Question 9
orcl.dmp contains a full export of the ORCL database. 
This command is executed to load data from orcl.dmp into the TESTDB database:
[oracle@host01 ~] impdp system/oracle \ 
> SHEMAS=sh,oe \ 
> REMAP_SCHEMA=sh:hr \
> DUMPFILE=orcl.dmp \ 
> EXCLUDE=index \ 
> TABLE_EXISTS_ACTION=replace \ 
> LOGFILE=impdp.log 
Which two are true? (Choose two.)
  1. It skips only tables that exist in both ORCL:SH and TESTDB:HR.
  2. It drops and recreates tables that exist in both ORCL:SH and TESTDB:HR.
  3. It skips all indexes of ORCL:SH and ORCL:OE.
  4. It skips only indexes that exist in both ORCL:SH and TESTDB:HR.
  5. It drops and re-creates indexes that exist in both ORCL:SH and TESTDB:HR.
Correct answer: DE
Question 10
Which is true about roles?
  1. A role can be granted to other roles.
  2. Roles can be created only by SYS or SYSTEM.
  3. Roles containing object privileges can be created only by the object owner.
  4. All roles belong to the SYSTEM schema.
  5. A role can be password-protected only if it has been granted system privileges.
Correct answer: E
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX AND EXAM FILES

Use ProfExam Simulator to open VCEX and EXAM files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

You have the opportunity to purchase ProfExam at a 20% reduced price

Get Now!