1Z0-052 Premium Bundle

1Z0-052 Premium Bundle

Oracle Database 11g: Administration I Certification Exam

4.5 
(23475 ratings)
0 QuestionsPractice Tests
0 PDFPrint version
May 20, 2024Last update

Oracle 1Z0-052 Free Practice Questions

Q1. Which statements listed below describe the data dictionary views?

1. These are stored in the SYSTEM tablespace

2. These are the based on the virtual tables

3. These are owned by the SYS user

4. These can be queried by a normal user only if O7_DICTIONARY_ACCESSIBLILITY parameter is set to TRUE

5. The V$FIXED_TABLE view can be queried to list the names of these views

A. 1 and 3

B. 2,3 and 5

C. 1,2, and 5

D. 2,3,4 and 5

Answer: A

Q2. View the Exhibit.

You want to create a tablespace to contain objects with block size 16 KB. But while configuring the storage you find that the block size that you can provide is only 8 KB.

Which configuration could have enabled the block selection of 16 KB?

A. Choosing the extent allocation type to uniform

B. Choosing the Segment Space Management option to manual

C. Setting autoextension on for the data file mentioned for the tablespace

D. Setting the DB_16K_CACHE_SIZE parameter for the database instance to a nonzero value

Answer: D

Q3. SQL> AUDIT DROP ANY TABLE BY scott BY SESSION WHENEVER SUCCESSFUL;

What is the effect of this command?

A. One audit record is created for every successful DROP TABLE command executed in the session of SCOTT

B. One audit record is generated for the session when SCOTT grants the DROP ANY TABLE privilege to other users

C. One audit record is created for the whole session if user SCOTT successfully drops one or more tables in his session

D. One audit record is created for every session of any other user in which a table owned by SCOTT is dropped successfully

E. One audit record is created for every successful DROP TABLE command executed by any user to drop tables owned by SCOTT

Answer: C

Q4. You set the following parameters in the parameter file and restarted the database:

MEMORY_MAX_TARGET=0

MEMORY_TARGET=500M

PGA_AGGREGATE_TARGET=90M

SGA_TARGET=270M

Which two statements are true about these parameters after the database instance is restarted?

(Choose two.)

A. The MEMORY_MAX_TARGET parameter is automatically set to 500 MB.

B. The PGA_AGGREGATE_TARGET and SGA_TARGET parameters are automatically set to zero.

C. The value of the MEMORY_MAX_TARGET parameter remains zero until it is changed manually.

D. The lower bounds of PGA_AGGREGATE_TARGET and SGA_TARGET parameters are set to 90 MB and 270 MB, respectively.

Answer: AD

Q5. You are managing an Oracle Database 11g database with the following backup strategy:

1. On Sunday, an incremental level 0 tape backup is performed

2. Monday through Saturday, a cumulative incremental level 1 tape backup is performed

Which two statements are true regarding the backups performed? (Choose two.)

A. The backup performed in step 1 backs up all blocks that have ever been in use in the database

B. The backup performed in step 2 copies all the blocks changed since the most recent level 0 backup

C. The backup performed in step 1 backs up all the blocks changed since the most recent level 1 backup

D. The backup performed in step 2 backs up all blocks that have changed since the most recent incremental backup at level 1

Answer: AB

Q6. The user HR owns the EMP table. The user HR grants privileges to the user SCOTT by using this command:

Which statement is true after HR issues the REVOKE command?

A. The command fails because SCOTT still has privileges.

B. The command succeeds and privileges are revoked from JIM.

C. The command fails because HR cannot revoke the privileges from JIM.

D. The command succeeds and only HR has the privilege to perform the SELECT, INSERT, and UPDATE operations on the EMP table.

Answer: C

Q7. Your database instance is functional for the past one month. The Automatic Workload Repository (AWR) snapshot retention is set to 7 and the STATISTICS_LEVEL initialization parameter is set to TYPICAL. You receive a complaint about the poor performance of the database between 7 PM and 9 PM of the previous day. Choose two actions any of which can be referred to first to diagnose the problem. (Choose two.)

A. Use the Active Session History report.

B. Use the AWR Compare Periods report.

C. Use an ADDM analysis between 7 PM and 9 PM of the previous day.

D. Use the AWR Compare Period report between 7 PM and 9 PM of the previous day.

Answer: BC

Q8. Your database instance is running with full workload after database creation. You have decided to use a fixedsize undo tablespace. You want to use the undo Advisor to estimate the capacity of the undo tablespace.

Which two factors must you consider before using the Undo Advisor to estimate the capacity of the undo tablespace? (Choose two.)

A. The retention period to support flashback

B. The expected length of the longest-running query

C. The number of undo tablespaces in the database

D. The size of the Flash Recovery Area for the database instance

Answer: AB

Q9. Which two statements are true about the Automatic Database Diagnostic Monitor (ADDM)? (Choose two.)

A. The ADDM requires at least four AWR snapshots for analysis

B. The ADDM runs after each AWR snapshot is collected automatically by MMON

C. The results of the ADDM analysis are stored in the Automatic Workload Repository (AWR)

D. The ADDM analysis provides only diagnostics information but does not provide recommendations

E. The ADDM calls other advisors if required, but does not provide recommendations about the advisors

Answer: BC

Q10. View the Exhibit to examine the output produced by the following query at three different times since the database instance started and has experienced workloads of different capacities:

SQL> SELECT substr(component, 0, 10) COMP, current_size CS, user_specified_size US

FROM v$memory_dynamic_components

WHERE current_size!=0;

What do you infer from this?

Exhibit:

A. The database instance is running with manual PGA management.

B. The database instance is running with manual shared memory management.

C. The database instance has the MEMORY_TARGET value set to a nonzero value.

D. All sessions are connected to the database instance in dedicated mode, and no RMAN or parallel query operations have been performed.

Answer: C

Q11. The HR user creates a stand-alone procedure as follows and grants the EXECUTE privilege on the procedure to many database users:

CREATE OR REPLACE PROCEDURE create_dept ( v_deptno NUMBER, v_dname VARCHAR2,

v_mgr NUMBER, v_loc NUMBER)

BEGIN

INSERT INTO hr.departments VALUES (v_deptno, v_dname, v_mgr, v_loc);

END;

The users having permission to execute the procedure are able to insert records into the

DEPARTMENTS table even though they do not have the INSERT privilege on the table. You want only those users who have privileges on the DEPARTMENTS table to be able to execute the procedure successfully.

What would you suggest to the PL/SQL developers to achieve this?

A. Create the procedure with definer's right.

B. Create the procedure with invoker's right.

C. Grant the EXECUTE privilege with GRANT OPTION on the procedure to selected users.

D. Create the procedure as part of a PL/SQL package and grant the EXECUTE privilege on the package to selected users.

Answer: B

Q12. Which two statements are true regarding the SGA_TARGET initialization parameter? (Choose two.)

A. It can be increased up to the value of the SGA_MAX_SIZE parameter.

B. Increasing the value of the SGA_TARGET parameter distributes the increased memory among all the autotuned components.

C. Reducing the value of the SGA_TARGET parameter deallocates memory from both autotuned and manually sized components.

D. Increasing the value of SGA_TARGET up to the value of SGA_MAX_SIZE disables the automatic shared memory management feature.

Answer: AB

Q13. Which two statements are true about setting the FAST_START_MTTR_TARGET initialization parameter to a nonzero value? (Choose two.)

A. The MTTR advisor will be disabled

B. Automatic checkpoint tuning will be enabled

C. The value for the LOG_CHECKPOINT_INTERVAL initialization parameter will be override the value for FAST_START_MTTR_TARGET

D. The time taken to recover the instance after the crash is always exactly the same as the value given for the FAST_START_MTTR_TARGET initialization parameter

Answer: BC

Q14. After performing a clean shut down of the database instance for maintenance, you mount the database and then execute a command to open the database:

SQL> ALTER DATABASE OPEN;

Which two statements are true? (Choose two.)

A. The online redo log files and online data files are opened

B. All the online data files headers are checked for consistency

C. Instance recovery is performed before opening the database

D. The path and existence of all the log file members are checked

Answer: AB

Q15. You have set Tablespace Full Metrics Threshold values for the USERS tablespace as follows:

Warning (%): 90

Critical (%): 95

Which background process is responsible for issuing alerts when the threshold is crossed?

A. System monitor (SMON)

B. Process monitor (PMON)

C. Memory manager process (MMAN)

D. Manageability Monitor process (MMON)

Answer: D

START 1Z0-052 EXAM