Winter Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: netbudy65

Note! Oracle has retired the 1z0-060 Exam Contact us through Live Chat or email us for more information.

1z0-060 Upgrade to Oracle Database 12c Questions and Answers

Questions 4

You are required to migrate your 11.2.0.3 database as a pluggable database (PDB) to a multitenant container database (CDB).

The following are the possible steps to accomplish this task:

1. Place all the user-defined tablespace in read-only mode on the source database.

2. Upgrade the source database to a 12c version.

3. Create a new PDB in the target container database.

4. Perform a full transportable export on the source database with the VERSION parameter set to 12 using the expdp utility.

5. Copy the associated data files and export the dump file to the desired location in the target database.

6. Invoke the Data Pump import utility on the new PDB database as a user with the DATAPUMP_IMP_FULL_DATABASE role and specify the full transportable import options.

7. Synchronize the PDB on the target container database by using the DBMS_PDS.SYNC_ODB function.

Identify the correct order of the required steps.

Options:

A.

2, 1, 3, 4, 5, 6

B.

1, 3, 4, 5, 6, 7

C.

1, 4, 3, 5, 6, 7

D.

2, 1, 3, 4, 5, 6, 7

E.

1, 5, 6, 4, 3, 2

Buy Now
Questions 5

You have altered a non-unique index to be invisible to determine if queries execute within an acceptable response time without using this index.

Which two are possible if table updates are performed which affect the invisible index columns? (Choose two.)

Options:

A.

The index remains invisible.

B.

The index is not updated by the DML statements on the indexed table.

C.

The index automatically becomes visible in order to have it updated by DML on the table.

D.

The index becomes unusable but the table is updated by the DML.

E.

The index is updated by the DML on the table.

Buy Now
Questions 6

Which three are true about the large pool for an Oracle database instance that supports shared server connections? (Choose three.)

Options:

A.

Allocates memory for RMAN backup and restore operations

B.

Allocates memory for shared and private SQL areas

C.

Contains a cursor area for storing runtime information about cursors

D.

Contains stack space

E.

Contains a hash area performing hash joins of tables

Buy Now
Questions 7

What is the effect of specifying the "ENABLE PLUGGABLE DATABASE" clause in a "CREATE DATABASE” statement?

Options:

A.

It will create a multitenant container database (CDB) with only the root opened.

B.

It will create a CDB with root opened and seed read only.

C.

It will create a CDB with root and seed opened and one PDB mounted.

D.

It will create a CDB that must be plugged into an existing CDB.

E.

It will create a CDB with root opened and seed mounted.

Buy Now
Questions 8

You notice a high number of waits for the db file scattered read and db file sequential read events in the recent Automatic Database Diagnostic Monitor (ADDM) report. After further investigation, you find that queries are performing too many full table scans and indexes are not being used even though the filter columns are indexed.

Identify three possible reasons for this. (Choose three.)

Options:

A.

Missing or stale histogram statistics

B.

Undersized shared pool

C.

High clustering factor for the indexes

D.

High value for the DB_FILE_MULTIBLOCK_READ_COUNT parameter

E.

Oversized buffer cache

Buy Now
Questions 9

Which two statements are true about the RMAN VALIDATE DATABASE command? (Choose two.)

Options:

A.

It checks the database for intrablock corruptions.

B.

It can detect corrupt pfiles.

C.

It can detect corrupt spfiles.

D.

It checks the database for interblock corruptions.

E.

It can detect corrupt block change tracking files.

Buy Now
Questions 10

Examine the contents of a SQL*Loader control file:

Which three statements are true regarding the SQL*Loader operation performed by using the control file? (Choose three.)

Options:

A.

An EMP table is created if a table does not exist. Otherwise, the EMP table is appended with the loaded data.

B.

The SQL*Loader data file myfile1.dat has the column names for the EMP table.

C.

The SQL*Loader operation fails because no record terminators are specified.

D.

Field names should be on the first line in both the SQL*Loader data files.

E.

The SQL*Loader operation assumes that the data files are stream record format files with a normal carriage return string as the record terminator.

Buy Now
Questions 11

In your Oracle 12c database, you create two roles: AUDITOR and AUDIT_ADMIN. You then execute the following commands:

To create a privilege analysis policy for the AUDIT_ADMIN role, you execute the following PL/SQL block:

Which statement is correct about the procedure?

Options:

A.

It always captures the use of the CREATE VIEW and CREATE TABLE privileges.

B.

It only captures the use of the privileges used through the AUDIT_ADMIN role when the ACCOUNT PAYABLE module is used.

C.

It always captures the use of the privileges exercised through the AUDITOR and AUDIT_ADMIN roles.

D.

It captures the use of the privileges used through the AUDIT_ADMIN and AUDITOR roles when the ACCOUNT PAYABLE module is used.

Buy Now
Questions 12

Which two statements are true concerning Information Lifecycle Management (ILM) policies? (Choose two.)

Options:

A.

Multiple ILM policies may exist for the same segment and any compression levels may be specified for any policy.

B.

Segment-level policies override row-level policies.

C.

Multiple ILM policies may exist for the same table, if the action is compression and the scope is at the row level.

D.

Multiple ILM policies may exist for the same segment but greater compression levels must be specified at greater elapsed times.

E.

ILM policy functions return a Boolean value.

Buy Now
Questions 13

An Automatic Database Diagnostic Monitor (ADDM) finding in your production database reports that the shared pool is inadequately sized. You diagnose that this is due to the different kinds of workloads and this occurs only during peak hours. The following are the parameter settings for the database instance:

You want to balance the memory between the System Global Area (SGA) components depending on the workload.

Which option would solve this problem?

Options:

A.

setting the PGA_AGGREGATE_TARGET parameter to 200M and the SGA_MAX_SIZE parameter to 400M

B.

setting the MEMORY_TARGET and SGA_MAX_SIZE parameters to 400M

C.

setting the SGA_TARGET parameter to 300M

D.

setting the SGA_MAX_SIZE parameter to 400M

Buy Now
Questions 14

You are planning the creation of a new multitenant container database (CDB) and want to store the ROOT and SEED container data files in separate directories.

You plan to create the database using SQL statements.

Which three techniques can you use to achieve this? (Choose three.)

Options:

A.

Use Oracle Managed Files (OMF).

B.

Specify the SEED FILE_NAME_CONVERT clause.

C.

Specify the PDB_FILE_NAME_CONVERT initialization parameter.

D.

Specify the DB_FILE_NAME_CONVERT initialization parameter.

E.

Specify all files names in the CREATE DATABASE statement without using Oracle Managed Files (OMF).

Buy Now
Questions 15

In your multitenant container database (CDB) that contains pluggable databases (PDBs), you grant the CREATE TABLE privilege to the common user C##A_ADMIN in root and all PDBs, with one command. You then execute the following command from the root container:

SQL> REVOKE create table FROM C##A_ADMIN;

What is the result?

Options:

A.

It executes successfully and the CREATE TABLE privilege is revoked from C##A_ADMIN in root only.

B.

It fails and reports an error because the CONTAINER=ALL clause is not used.

C.

It executes successfully and the CREATE TABLE privilege is revoked from C##A_ADMIN in root and all the PDBs.

D.

It fails and reports an error because the CONTAINER=CURRENT clause is not used.

E.

It executes successfully and the CREATE TABLE privilege is revoked from C##A_ADMIN in all the PDBs.

Buy Now
Questions 16

Which two are prerequisites for performing a flashback transaction? (Choose two.)

Options:

A.

Flashback Database must be enabled.

B.

Undo retention guarantee for the database must be configured.

C.

EXECUTE privilege on the DBMS_FLASHBACK package must be granted to the user flashing back the transaction.

D.

Supplemental logging must be enabled.

E.

Recycle bin must be enabled for the database.

F.

Block change tracking must be enabled for the database.

Buy Now
Questions 17

You execute a DROP USER CASCADE on an Oracle 11g release 1 database and immediately realized that you forgot to copy the OCA.EXAM_RESULTS table to the OCP schema.

RECYCLE_BIN was enabled before the DROP USER was executed and the OCP user has been granted the FLASHBACK ANY TABLE system privilege.

What is the quickest way to recover the contents of the OCA.EXAM_RESULTS table to the OCP schema?

Options:

A.

Execute FLASHBACK TABLE OCA.EXAM_RESULTS TO BEFORE DROP RENAME TO OCP.EXAM_RESULTS; connected as SYSTEM.

B.

Recover the table using traditional Tablespace Point In Time Recovery.

C.

Recovery the table using Database Point In Time Recovery.

D.

Execute FLASHBACK TABLE OCA.EXAM_RESULTS TO BEFORE DROP RENAME TO EXAM_RESULTS; connected as the OCP user.

Buy Now
Questions 18

Which three operations can be performed as multipartition operations in Oracle Database 12c? (Choose three.)

Options:

A.

Merge partitions of a list partitioned table.

B.

Drop partitions of a list partitioned table.

C.

Coalesce partitions of a hash-partitioned global index.

D.

Move partitions of a range-partitioned table.

E.

Rename partitions of a range partitioned table.

F.

Merge partitions of a reference-partitioned index.

Buy Now
Questions 19

Your database uses Automatic Memory Management, and has the large pool configured.

You issue the following command:

SQL> ALTER SYSTEM SET SHARED_SERVERS = 5;

Which statement is true about the shared server configuration?

Options:

A.

It is enabled only if the SHARED_SERVER_SESSIONS parameter is configured.

B.

It is enabled and the UGA is located in the large pool for connections that use the shared server configuration.

C.

It is enabled only if at least five dispatchers are configured.

D.

It is enabled and all the DBA and non-DBA sessions function in shared server mode.

Buy Now
Questions 20

Which three statements are true about RMAN compressed backups?(Choose three.)

Options:

A.

Media manager compression should not be enabled if compressed backups are being written to tape.

B.

Compressed backups can be written to media only if using proxy copies.

C.

File system compression should be enabled if compressed backups are being written to disk.

D.

Compression creates some performance overhead during backups to tape.

E.

Compression creates some performance overhead during backups to disk.

Buy Now
Questions 21

Examine the following command:

ALTER SYSTEM SET enable_ddl_logging=TRUE;

Which statement is true?

Options:

A.

Only the data definition language (DDL) commands that resulted in errors are logged in the alert log file.

B.

All DDL commands are logged in the alert log file.

C.

All DDL commands are logged in a different log file that contains DDL statements and their execution dates.

D.

Only DDL commands that resulted in the creation of new segments are logged.

E.

All DDL commands are logged in XML format in the alert directory under the Automatic Diagnostic Repository (ADR) home.

Buy Now
Questions 22

Which three statements are true about the use of the query result cache? (Choose three.)

Options:

A.

Results obtained from a query rewrite to a materialized view may be stored in the query result cache.

B.

Stale results may still be obtained from the query result cache, if the query session's query_rewrite_integrity parameter is set to stale_tolerated.

C.

Results obtained from a join between a table and a view may be stored in the query result cache.

D.

Results from distributed queries are never stored in the query result cache.

E.

Results may not be obtained from the query result cache, when the query_rewrite_enabled parameter is set to false.

F.

Results from remote queries may sometimes be stored in the query result cache.

Buy Now
Questions 23

Which two statements are true when the listener handles connection requests to an Oracle 12c database instance with multithreaded architecture enabled in UNIX? (Choose two.)

Options:

A.

The local listener may pass the request to an existing process which in turn will create a thread.

B.

Each multithreaded Oracle process has an SCMN thread.

C.

Each Oracle process runs an SCMN thread.

D.

Thread creation must be routed through a dispatcher process.

Buy Now
Questions 24

Examine this command:

SQL> exec DBMS_STATS.SET_TABLE_PREFS('SH', 'CUSTOMERS', 'PUBLISH', 'false');

Which three statements are true about the effect of this command? (Choose three.)

Options:

A.

Statistics collection is not done for the CUSTOMERS table when schema stats are gathered.

B.

Statistics collection is not done for the CUSTOMERS table when database stats are gathered.

C.

Any existing statistics for the CUSTOMERS table are still available to the optimizer at parse time.

D.

Statistics gathered on the CUSTOMERS table when schema stats are gathered are stored as pending statistics.

E.

Statistics gathered on the CUSTOMERS table when database stats are gathered are stored as pending statistics.

Buy Now
Questions 25

Examine the commands executed to monitor database operations:

Which two statements are true? (Choose two.)

Options:

A.

Database operations will be monitored only when they consume a significant amount of resources.

B.

Database operations for all sessions will be monitored.

C.

Database operations will be monitored only if the STATISTICS_LEVEL parameter is set to TYPICAL and CONTROL_MANAGEMENT_PACK_ACCESS is set to DIAGNOSTIC+TUNING.

D.

Only DML and DDL statements will be monitored for the session.

E.

All subsequent statements in the session will be treated as one database operation and will be monitored.

Buy Now
Questions 26

Your multitenant container database (CDB) containing two pluggable databases, PDB2_1 and PDB2_2, is running in ARCHIEVELOG mode. An RMAN backup exists for the databases.

You issue the following commands and get an error:

Examine the following commands:

Identify two correct sequences of commands to perform a recovery and make the data available. (Choose two.)

Options:

A.

1,2,3,4,7,8

B.

1,2,5,6,7,8

C.

1,2,10,5,6,9

D.

10,3,4,8,9

Buy Now
Questions 27

You created a new database using the "CREATE DATABASE" statement without specifying the "ENABLE PLUGGABLE" clause.

What are two effects of not using the "ENABLE PLUGGABLE DATABASE" clause? (Choose two.)

Options:

A.

The database is created as a non-CDB and can never contain a PDB.

B.

The database is created as a PDB and must be plugged into an existing multitenant container database (CDB).

C.

The database is created as a non-CDB and can never be plugged into a CDB.

D.

The database is created as a non-CDB but can be plugged into an existing CDB.

E.

The database is created as a non-CDB but will become a CDB whenever the first PDB is plugged in.

Buy Now
Questions 28

Which two statements are true about variable extent size support for large ASM files? (Choose two.)

Options:

A.

The metadata used to track extents in SGA is reduced.

B.

Rebalance operations are completed faster than with a fixed extent size

C.

An ASM instance automatically allocates an appropriate extent size for a file based on file size.

D.

Resync operations are completed faster when a disk comes online after being taken offline.

E.

Performance improves in a stretch cluster configuration by reading from a local copy of an extent.

Buy Now
Questions 29

In your multitenant container database (CDB) that contains some pluggable databases (PDBs), you execute the following commands in the root container:

Which two statements are true? (Choose two.)

Options:

A.

The C##ROLE1 role is created in the root database and all the PDBs.

B.

The C##ROLE1 role is created only in the root database because the CONTAINER clause is not used.

C.

Privileges in the role are granted to the C##A_ADMIN user only in the root database.

D.

Privileges in the role are granted to the C##A_ADMIN user in the root database and all the PDBs.

E.

The statement for granting the role to the user fails because the CONTAINER clause is not used.

Buy Now
Questions 30

Your database supports a DSS workload that involves the execution of complex queries: Currently, the library cache contains the ideal workload for analysis. You want to analyze some of the queries for an application that are cached in the library cache.

What must you do to receive recommendations about the efficient use of indexes and materialized views to improve query performance?

Options:

A.

Create a SQL Tuning Set (STS) that contains the queries cached in the library cache and run the SQL Tuning Advisor (STA) on the workload captured in the STS.

B.

Run the Automatic Workload Repository (AWR) report.

C.

Create an STS that contains the queries cached in the library cache and run the SQL Performance Analyzer (SPA) on the workload captured in the STS.

D.

Create an STS that contains the queries cached in the library cache and run the SQL Access Advisor on the workload captured in the STS.

E.

Run the Automatic Database Diagnostic Monitor (ADDM).

Buy Now
Questions 31

You notice a performance change in your production Oracle 12c database and you want to know what change caused this performance difference. You generate the compare period Automatic Database Diagnostic Monitor (ADDM) report to further investigation.

Which three findings would you get from the report? (Choose three.)

Options:

A.

It shows the resource usage for CPU, memory, and I/O in both time periods.

B.

It identifies any workload change that caused the performance difference in both time periods.

C.

It detects any configuration change that caused the performance difference in both time periods.

D.

It gives information about statistics collection in both time periods.

E.

It detects the top wait events causing performance degradation.

Buy Now
Exam Code: 1z0-060
Exam Name: Upgrade to Oracle Database 12c
Last Update: Nov 21, 2024
Questions: 208