1Z0-052 Premium Bundle

1Z0-052 Premium Bundle

Oracle Database 11g: Administration I Certification Exam

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

Oracle 1Z0-052 Free Practice Questions

Q1. View the Exhibit and examine the user information.

The user has been granted CONNECT and RESOURCE roles and no individual system privileges.

The SL_REP user executes this command to create a table:

SQL> CREATE TABLE orders (

oid number(6),

odate date,

ccode number(4),

oamt number(10,2)

) TABLESPACE purchase_space;

The PURCHASE_SPACE tablespace already exists in the database.

Which statement describes the effect of the command?

Exhibit:

A. The command executes successfully and creates the table in the USERS tablespace.

B. The command executes successfully and creates the table in the PURCHASE_SPACE tablespace.

C. The command produces an error because the user does not have the privilege to createthe table.

D. The command produces an error because the user does not have quota in the PURCHASE_SPACE tablespace.

Answer: B

Q2. Which three statements are true about logical structures of the Oracle database? (Choose three.)

A. Each segment contains one or more extents.

B. Multiple tablespaces can share a single data file.

C. A data block is the smallest unit of input/output (I/O) in data files.

D. It is possible to have tablespaces of different block sizes in a database.

E. Each data block in the database always corresponds to one operating system block.

Answer: ACD

Q3. In a system, large online transaction processing (OLTP) jobs run during the daytime that require a large database buffer cache. In the night, the system supports batch jobs that require a higher value to be set for the large pool. You must simultaneously configure the memory components to accommodate the peak requirement.

What would you do to automate this configuration for the memory components with change in mode of working?

A. Set the SGA_TARGET initialization parameter to zero.

B. Set the PRE_PAGE_SGA initialization parameter to TRUE.

C. Set the MEMORY_MAX_TARGET initialization parameter to zero.

D. Set the SGA_TARGET initialization parameter to a nonzero value.

Answer: D

Q4. A constraint in a table is defined with the INITIALLY IMMEDIATE clause. You executed the ALTER TABLE command with the ENABLE VALIDATE option to enable the constraint that was disabled.

What are the two effects of this command? (Choose two.)

A. It fails if any existing row violates the constraint.

B. It does not validate the existing data in the table.

C. It enables the constraint to be enforced at the end of each transaction.

D. It prevents insert, update, and delete operations on the table while the constraint is in the process of being enabled.

Answer: AD

Q5. Your database instance is configured with automatic undo management and the UNDO_RETENTION parameter is set to 900 seconds. You executed the following command to enable retention guarantee:

SQL> ALTER TABLESPACE undotbs1 RETENTION GUARANTEE;

What affect would this command have on the database?

A. The extents in the undo tablespace retain data until the next full database backup

B. The extents containing committed undo in the undo tablespace are not overwritten for at least 15 minutes

C. The extents containing committed data in the undo tablespace are not overwritten until the instance is shut down

D. The extents containing committed undo in the undo tablepace are transferred to Flash Recovery Area before being overwritten

Answer: B

Q6. These are points that describe the contents of different memory components:

1: Descriptive information or metadata about schema objects that are queried by using SQL statements

2: The runtime area for data manipulation language (DML) or data definition language (DDL) statements

3: Results of SQL queries and PL/SQL functions

4: Executable forms of SQL cursors, PL/SQL programs, and Java classes

5: The information necessary to reconstruct changes made to the database by a transaction

Which of these will be stored in the Shared Pool if the necessary configurations are done?

A. 1 and 2

B. 2 and 5

C. 1,3, and 4

D. 3,4 and 5

E. 1,2,3 and 4

Answer: C

Q7. You receive complaints from users regarding the high waiting time for their transactions. On investigation, you find that some users are not committing their transactions though they are not performing any activity for a long time. As a result, SQL statements need to wait for rowlevel locks.

Which two actions could you take to prevent this locking problem in the future? (Choose two.)

A. Decrease the IDLE_TIME resource limit in the profile assigned to the blocking users.

B. Use Database Resource Manager to automatically log out sessions that block others and are idle

C. Set the limit in the profile of blocking users to control the number of blocks to be accessed in a session.

D. Decrease the maximum number of interested transaction list (ITL) slots for the segments on which the blocking user performs the transaction.

Answer: AB

Q8. You executed the following command to create a tablespace called SALES_DATA:

SQL> CREATE TABLESPACE sales_data

DATAFILE SIZE 100M

SEGMENT SPACE MANAGEMENT AUTO;

Which two statements are true about the SALES_DATA tablespace? (Choose two)

A. The database automatically determines the extent-sizing policy for the tablespace.

B. The segments are automatically shrunk when the contents are removed from them.

C. The allocation of extents within the tablespace is managed through the dictionary tables.

D. The space utilization description of the data blocks in segments is recorded in bitmap blocks.

E. The space utilization description of the data blocks in segments is managed through free lists.

Answer: AD

Q9. You want to move all objects of the APPS user in the test database to the DB_USR schema of the production database. Which option of IMPDP would you use to accomplish this task?

A. FULL

B. SCHEMAS

C. TRANSFORM

D. REMAP_SCHEMA

E. REMAP_TABLESPACE

Answer: D

Q10. Observe the information in the columns:

Which option has the correct match between the memory areas and their contents?

A. 1-c, 2-b, 3-d, 4-a

B. 1-b, 2-c, 3-d, 4-a

C. 1-a, 2-b, 3-c, 4-d

D. 1-a, 2-b, 3-d, 4-c

Answer: C

Q11. Given below is a list of scenarios:

1. A user terminates his session abnormally.

2. The connection between the server and the client application terminates because of a network failure.

3. A schema is accidentally dropped.

4. The tablespace is accidentally dropped from the database.

5. The hard disk gets corrupted and the data files in the disk are lost.

6. The database instance abnormally shuts down because of power failure.

Which scenarios require DBA intervention to perform recovery?

A. 1, 3, and 6

B. 4, 5, and 6

C. 3, 4, and 5

D. 1, 2, and 6

Answer: C

Q12. You have recently collected statistics on certain objects of a schema in your database. But you observe suboptimal execution plans for the queries on these objects after two days of statistics collection. The optimizer statistics retention period is set to its default value.

Which action would help to use the previous set of statistics on the objects?

A. Restore statistics from statistics history.

B. Reduce the optimizer statistics retention period by 2 days.

C. Set the OPTIMIZER_PENDING_STATISTICS parameter to TRUE.

D. Reduce the Automatic Workload Repository (AWR) retention period by 2 days.

Answer: A

Q13. Examine the following output:

Which two statements about the above index are true? (Choose two.)

A. It is ignored by the query optimizer.

B. It is not used while the index is being rebuilt.

C. The index cannot be rebuilt, and has to be re-created.

D. The index is automatically rebuilt when used the next time.

Answer: AB

Q14. Which two statements are true regarding B-tree index? (Choose two.)

A. The leaf blocks in the index are doubly linked.

B. The leaf node stores a bitmap for each key value.

C. The rows with NULL value in key columns also have entries in the index.

D. The deletion of a row from the table causes a logical deletion in index leaf block and the space becomes available for the new leaf entry.

Answer: AD

Q15. Identify the two situations in which you use the alert log file in your database to check the details. (Choose two.)

A. Running a query on a table returns "ORA-600: Internal Error."

B. Inserting a value in a table returns "ORA-01722: invalid number."

C. Creating a table returns "ORA-00955: name is already used by an existing object."

D. Inserting a value in a table returns "ORA-00001: unique constraint (SYS.PK_TECHP) violated."

E. Inserting a row in a table returns "ORA-00060: deadlock detected while waiting for resource."

Answer: AE

START 1Z0-052 EXAM