Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70percent

Oracle 1z0-062 Oracle Database 12c: Installation and Administration Exam Practice Test

Demo: 56 questions
Total 379 questions

Oracle Database 12c: Installation and Administration Questions and Answers

Question 1

Your database instance has the following parameter setting:

OS_AUTHENT_PREFIX = OPS$

You execute the following command:

And then grant OPS$GUEST_USER the CREATE SESSION privilege.

Which two statements are true? (Choose two.)

Options:

A.

GUEST_USER can query the tables created in the USERS tablespace by default.

B.

The authentication details for GUEST_USER are stored in the database password file.

C.

A local GUEST_USER OS account should exist before GUEST_USER can log on to the database.

D.

D. GUEST_USER can log on to the database without specifying a username and password.

E.

GUEST_USER is forced to change the password at the first login.

Question 2

An employee salary in the non-partitioned EMPLOYEES table, has been updated but the transaction is uncommitted.

Which two types of lock are held by the transaction? (Choose two.)

Options:

A.

a row level lock on the row being updated

B.

a null lock on the row being updated

C.

a row shared lock on the EMPLOYEES table

D.

an exclusive lock on the EMPLOYEES table

E.

a null lock on the EMPLOYEES table

Question 3

Which three statements are true about Automatic Workload Repository (AWR)? (Choose three.)

Options:

A.

An AWR snapshot shows the SQL statements that are producing the highest load on the system, based on criteria such as elapsed time and CPU time.

B.

AWR data is stored in memory and in a database.

C.

All AWR tables belong to the SYSTEM schema.

D.

The manageability monitor (MMON) process gathers statistics and creates an AWR snapshot that is used by the self-tuning components in a database.

E.

An AWR snapshot contains system-wide tracing and logging information.

Question 4

DEFERRED_SEGMENT_CREATION is TRUE in one of your databases.

You execute this command:

Which three statements are true immediately after this statement executes successfully?

Options:

A.

A database object is created.

B.

No database segment is created.

C.

The table and column definitions are stored in the data dictionary.

D.

No table definition is stored in the data dictionary.

E.

No column definitions are stored in the data dictionary.

F.

No object definition is stored in the data dictionary.

Question 5

You want execution of large database operations to suspend, and then resume, in the event of space allocation failures.

You set the value of the initialization parameter RESUMABLE_TIMEOUT to 3600.

Which two statements are true? (Choose two.)

Options:

A.

Before a statement executes in resumable mode, the ALTER SESSION ENABLE RESUMABLE statement must be issued in its session.

B.

Data Manipulation Language (DML) operations are resumable, provided that they are not embedded in a PL/SQL block.

C.

A resumable statement can be suspended and resumed only once during execution.

D.

A suspended statement will report an error if no corrective action has taken place during a timeout period.

E.

Suspending a statement automatically results in suspending a transaction and releasing all the resources held by the transaction.

Question 6

SMD is a smallfile locally managed tablespace with manual segment space management.

The SH user receives the following error while inserting data into the sales table:

Which three actions can be taken to enable the user to insert data? (Choose three.)

Options:

A.

altering the data file associated with the SMD tablespace to grow automatically

B.

adding a data file to the SMD tablespace, provided the tablespace has not reached its maximum number of file

C.

changing segment space management for the SMD tablespace to automatic

D.

resizing the data file associated with the SMD tablespace to make it larger, provided all data files have not yet reached their maximum size

E.

increasing the space quota on the SMD tablespace for the SH user, provided the files have not yet reached their maximum size

Question 7

Examine these statements:

DESC emp

INSERT INTO emp VALUES ( 101, 'John', 12000);

1 row created.

SAVEPOINT after_insert;

Savepoint created.

UPDATE emp SET salary=16000 WHERE empno=101;

1 row updated.

SAVEPOINT after_update;

Savepoint created.

DELETE FROM emp WHERE empno=101;

1 row deleted.

SAVEPOINT after_delete;

Savepoint created.

ROLLBACK TO SAVEPOINT after_update;

Rollback complete.

INSERT INTO emp VALUES ( 102, 'Emma', 12000);

ROLLBACK TO SAVEPOINT after_delete;

Which is the result and effect of this ROLLBACK?

Options:

A.

The ROLLBACK backs out all DMLS before after_delete.

B.

The ROLLBACK backs out all DMLS until after_delete.

C.

The ROLLBACK throws an error.

D.

The ROLLBACK executes successfully but does not back out any DMLS.

Question 8

Your database is in NOARCHIVELOG mode. You want to enable archiving for the database.

Examine the steps:

1. Execute the ALTER DATABASE ARCHIVELOG command.

2. Execute SHUTDOWN IMMEDIATE.

3. Execute STARTUP MOUNT.

4. Set the DB_RECOVERY_FILE_DEST parameter to $ORACLE_HOME/dbs/.

5. Execute STARTUP NOMOUNT.

6. Open the database.

Identify the required steps in the correct sequence.

Options:

A.

4, 2, 5, 1, 6

B.

1, 2, 3, 4, 6

C.

2, 3, 1, 6

D.

2, 5, 1, 6

Question 9

Which three statements are true about naming methods? (Choose three.)

Options:

A.

Local naming supports multiple protocols, but for any one connection, the client and server must use the same protocol.

B.

In the Easy Connect method, clients can connect to a database server by using the host name of the database with an optional port and service name.

C.

In the Easy Connect method, the listener port and IP address must be provided for the connection to be successful.

D.

The local naming method does not support connect-time failover and load-balancing options.

E.

The directory naming method supports connect-time failover and load-balancing options.

Question 10

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

Options:

A.

It calls SQL advisors automatically if required.

B.

It provides recommendations only for poorly performing SQL statements.

C.

Its results are stored in AWR.

D.

It runs automatically after each AWR snapshot is created and requires at least two snapshots for analysis.

E.

It requires at least one Automatic Workload Repository (AWR) snapshot for analysis.

Question 11

Which three statements are true about windows? (Choose three.)

Options:

A.

Only one window can be open at any given time

B.

Consumer groups are associated with windows

C.

Windows work with job classes to control resource allocation

D.

The database service name must be provided during windows creation

E.

Windows can automatically start job or change resource allocation among jobs for various time periods

Question 12

Which two statements are true about initialization parameter files? (Choose two.)

Options:

A.

A lost or damaged SPFILE can be re-created by using the parameter values listed in the alert log.

B.

A PFILE must exist for an SPFILE to be created.

C.

The ALTER SYSTEM command cannot be used to change the value of any parameter if a database instance has started using a PFILE.

D.

Both the SPFILE and PFILE must always reside on a file system accessible from the database host server.

E.

On startup, by default a database instance always first searches for an SPFILE, and if it does not find any, searches for a PFILE.

Question 13

Which three database operations can be performed only at MOUNT state? (Choose three.)

Options:

A.

performing Flashback Database

B.

renaming control files

C.

enabling or disabling ARCHIVELOG mode

D.

re-creating control files

E.

performing full database recovery

Question 14

Tape streaming is not happening while performing RMAN tape backup. On investigation, you find that it is not because of the incremental backup or the empty file backup and that RMAN is sending data blocks to tape drive fast enough.

What could be a solution to make streaming happen during the backup?

Options:

A.

Configure backup optimization

B.

Configure the channel to increase MAXOPENFILES

C.

Configure the channel to increase the capacity with the RATE parameter

D.

Configure the channel to adjust the tape buffer size with the BLKSIZE option

Question 15

You plan to upgrade your Oracle Database 9i to Oracle Database 12c.

Which two methods can you use? (Choose two.)

Options:

A.

Perform a rolling upgrade.

B.

Perform a direct upgrade by running the Database Upgrade Assistant (DBUA).

C.

Perform a direct upgrade by manually running the catctl.pl and catupgrd.sql scripts before issuing the STARTUPUPGRADE command.

D.

Install the Oracle Database 12c software, create a new Oracle 12c database, and then use the Oracle Data Pump to import data from the source Oracle 9i database to the target Oracle 12c database.

E.

Upgrade your current database to Oracle Database release 10.2.0.5, and then upgrade to Oracle Database 12c.

Question 16

Which statement is true regarding the DEFAULT profile?

Options:

A.

The values assigned to the resource limits and password parameters in the default profile can be altered.

B.

A different DEFAULT profile can be created before each user in a database.

C.

It can be dropped and recreated.

D.

it must be explicitly assigned to the user.

Question 17

Your database instance has Automatic Memory Management enabled and supports shared server connections.

Examine the following:

1. Parallel execution messages and control structures

2. Local variables for a process

3. Security and resource usage information

4. Runtime memory values, such as rows retrieved for a SQL statement using a serial execution plan

5. SQL execution work areas

Which option indicates what is allocated from the large pool in this instance?

Options:

A.

only 1

B.

1, 2, and 5

C.

1, 2, 3, and 5

D.

1, 2, and 4

Question 18

Your database is open in read/write mode and multiple users are connected to the database instance.

You execute the following command:

SQL> ALTER SYSTEM ENABLE RESTRICTED SESSION;

What would be the effect on current sessions?

Options:

A.

They are not terminated but may only issue queries.

B.

They are not affected.

C.

They are terminated immediately.

D.

They are terminated after completing the transaction.

Question 19

As part of a manual upgrade of your database to Oracle Database 12c, you plan to issue the command:

SQL> STARTUP UPGRADE

Which three statements are true about the upgrade process? (Choose three.)

Options:

A.

All system triggers are disabled during the upgrade process.

B.

Only queries on fixed views execute without errors until you run the catctl.pl script.

C.

The COMPATIBLE parameter must be set to at least 12.1.0 before issuing the command.

D.

All job queues remain active during the upgrade process.

E.

Only connections AS SYSDBA are allowed during the upgrade process.

Question 20

You have the following entry in the tnsnames.ors of your hq.us.example.com host machine:

You issue the following command at the command prompt:

Sqlplus HR/HR@ORCL

Which statement is true about the connection to the ORCL database instance?

Options:

A.

The connection succeeds, provided the NAMES.DEFAULT_DOMAIN parameter is set to us.example.com in the sqlnet.ora file on the client side.

B.

The connection fails because the net service name does not have the suffix us.example.com.

C.

The connection succeeds, provided the SERVICE_NAMES initialization parameter is set to ORCL.

D.

The connection succeeds, provided the ORCL.us.example.com database service is registered with a listener, the listener is up, and the database is open.

Question 21

A redaction policy was added to the SAL column of the SCOTT.EMP table:

All users have their default set of system privileges.

For which three situations will data not be redacted? (Choose three.)

Options:

A.

SYS sessions, regardless of the roles that are set in the session

B.

SYSTEM sessions, regardless of the roles that are set in the session

C.

SCOTT sessions, only if the MGR role is set in the session

D.

SCOTT sessions, only if the MGR role is granted to SCOTT

E.

SCOTT sessions, because he is the owner of the table

F.

SYSTEM session, only if the MGR role is set in the session

Question 22

The HR user executes the following query on the EMPLOYEES table but does not issue COMMIT, ROLLBACK, or any data definition language (DDL) command after that:

HR then opens a second session.

Which two operations wait when executed in HR’s second session? (Choose two.)

Options:

A.

LOCK TABLE employees IN EXCLUSIVE MODE;

B.

INSERT INTO employees(empno,ename) VALUES (1289, ‘Dick’);

C.

SELECT job FROM employees WHERE job=’CLERK’ FOR UPDATE OF empno;

D.

SELECT empno,ename FROM employees WHERE job=’CLERK’;

E.

INSERT INTO employees(empno,ename,job) VALUES (2001,’Harry’,’CLERK);

Question 23

In your production database, data manipulation language (DML) operations are executed on the SALES table.

You have noticed some dubious values in the SALES table during the last few days. You are able to track users, actions taken, and the time of the action for this particular period but the changes in data are not tracked. You decide to keep track of both the old data and new data in the table long with the user information.

What action would you take to achieve this task?

Options:

A.

Apply fine-grained auditing.

B.

Implement value-based auditing.

C.

Impose standard database auditing to audit object privileges.

D.

Impose standard database auditing to audit SQL statements.

Question 24

You are connected to a pluggable database (PDB) as a common user with DBA privileges.

The STATISTICS_LEVEL parameter is PDB_MODIFIABLE. You execute the following:

SQL > ALTER SYSTEM SET STATISTICS_LEVEL = ALL SID = ‘*’ SCOPE = SPFILE;

Which is true about the result of this command?

Options:

A.

The STATISTICS_LEVEL parameter is set to all whenever this PDB is re-opened.

B.

The STATISTICS_LEVEL parameter is set to ALL whenever any PDB is reopened.

C.

The STATISTICS_LEVEL parameter is set to all whenever the multitenant container database (CDB) is restarted.

D.

Nothing happens; because there is no SPFILE for each PDB, the statement is ignored.

Question 25

You perform RMAN backups for your database and use a recovery catalog for managing the backups. To free space, you execute this command:

RMAN> DELETE OBSOLETE;

Which three statements are true is this scenario? (Choose three.)

Options:

A.

The backup sets marked as expired are deleted.

B.

The information related to the backups is removed from the recovery catalog and the control file.

C.

The physical files related to the backup need to be manually deleted.

D.

The physical files related to the backup are deleted automatically.

E.

The backups deleted are based on the backup retention policy.

Question 26

Identify three benefits of Unified Auditing.

Options:

A.

Decreased use of storage to store audit trail rows in the database.

B.

It improves overall auditing performance.

C.

It guarantees zero-loss auditing.

D.

The audit trail cannot be easily modified because it is read-only.

E.

It automatically audits Recovery Manager (RMAN) events.

Question 27

Which two statements are true when row archival management is enabled? (Choose two.)

Options:

A.

The ORA_ARCHIVE_STATE column visibility is controlled by the ROW ARCHIVAL VISIBILITY session parameter.

B.

The ORA_ARCHIVE_STATE column is updated manually or by a program that could reference activity tracking columns, to indicate that a row is no longer considered active.

C.

The ROW ARCHIVAL VISIBILITY session parameter defaults to active rows only.

D.

The ORA_ARCHIVE_STATE column is visible if referenced in the select list of a query.

E.

The ORA_ARCHIVE_STATE column is updated automatically by the Oracle Server based on activity tracking columns, to Indicate that a row is no longer considered active.

Question 28

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

Options:

A.

Thread creation must be routed through a dispatcher process

B.

The local listener may spawn a now process and have that new process create a thread

C.

Each Oracle process runs an SCMN thread.

D.

Each multithreaded Oracle process has an SCMN thread.

E.

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

Question 29

Your multitenant container database has three pluggable databases (PDBs): PDB1, PDB2, and PDB3.

Which two RMAN commands may be; used to back up only the PDB1 pluggable database? (Choose two.)

Options:

A.

BACKUP PLUGGABLE DATABASE PDB1 while connected to the root container

B.

BACKUP PLUGGABLE DATABASE PDB1 while connected to the PDB1 container

C.

BACKUP DATABASE while connected to the PDB1 container

D.

BACKUP DATABASE while connected to the boot container

E.

BACKUP PLUGGABLE database PDB1 while connected to PDB2

Question 30

Which three statements are true about SQL plan directives? (Choose three.)

Options:

A.

They are tied to a specific statement or SQL ID.

B.

They instruct the maintenance job to collect missing statistics or perform dynamic sampling to generate a more optimal plan.

C.

They are used to gather only missing statistics.

D.

They are created for a query expression where statistics are missing or the cardinality estimates by the optimizer are incorrect.

E.

They instruct the optimizer to create only column group statistics.

F.

Improve plan accuracy by persisting both compilation and execution statistics in the SYSAUX tablespace.

Question 31

You set the following parameters in the parameter file and restart the database instance:

Which two statements are true? (Choose two.)

Options:

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 for the database instance.

D.

The lower limits of the PGA_AGGREGATE_TARGET and SGA_TARGET parameters are set to 90 MB and 270 MB respectively.

E.

The instance does not start up because Automatic Memory Management (AMM) is enabled but PGA_AGGREGATE_TARGET and SGA_TARGET parameters are set to nonzero values.

Question 32

Which three statements are true about the purpose of checkpoints? (Choose three.)

Options:

A.

They ensure that uncommitted transactions are rolled back in case of an instance failure.

B.

They ensure that all the dirty buffers are written to disk during a normal shutdown.

C.

They ensure that instance recovery starts in the event of an instance failure.

D.

They ensure that dirty buffers in the buffer cache are written to disk regularly.

E.

They reduce the time required for recovery in case of an instance failure.

Question 33

You are connected using SQL* Plus to a multitenant container database (CDB) with SYSDBA privileges and execute the following sequence statements:

What is the result of the last SET CONTAINER statement and why is it so?

Options:

A.

It succeeds because the PDB_ADMIN user has the required privileges.

B.

It fails because common users are unable to use the SET CONTAINER statement.

C.

It fails because local users are unable to use the SET CONTAINER statement.

D.

If fails because the SET CONTAINER statement cannot be used with PDB$SEED as the target pluggable database (PDB).

Question 34

Examine the details of the Top 5 Timed Events in the following Automatic Workloads Repository (AWR) report:

What are three possible causes for the latch-related wait events?

Options:

A.

The size of the shared pool is too small.

B.

Cursors are not being shared.

C.

A large number COMMITS are being performed.

D.

There are frequent logons and logoffs.

E.

The buffers are being read into the buffer cache, but some other session is changing the buffers.

Question 35

Your production database uses file system storage. You want to move storage to Oracle Automatic Storage Management (ASM).

How would you achieve this?

Options:

A.

by using a transportable database

B.

by using the Database Upgrade Assistant (DBUA)

C.

by using Data Pump

D.

by using RMAN

Question 36

On your Oracle 12c database, you Issue the following commands to create indexes

SQL > CREATE INDEX oe.ord_customer_ix1 ON oe.orders (customers_id, sales_rep_id) INVISIBLE;

SQL> CREATE BITMAP INDEX oe.ord_customer_ix2 ON oe.orders (customers_id, sales_rep_id);

Which two statements are correct? (Choose two.)

Options:

A.

Both the indexes are created; however, only the ORD_COSTOMER index is visible.

B.

The optimizer evaluates index access from both the Indexes before deciding on which index to use for query execution plan.

C.

Only the ORD_CUSTOMER_IX1 index is created.

D.

Only the ORD_CUSTOMER_IX2 index is created.

E.

Both the indexes are updated when a new row is inserted, updated, or deleted In the orders table.

Question 37

You want to create a role that:

- is protected from unauthorized usage

- does not use a password embedded in the application source code or stored in a table

- is enabled for a user based on security policies defined in a PL/SQL package

How would you create this role?

Options:

A.

as a secure application role

B.

with definer’s rights

C.

with global authentication

D.

with external authentication

Question 38

Which two statements are true about Oracle Data Pump export and import operations? (Choose two.)

Options:

A.

You can detach from a data pump export job and reattach later.

B.

Data pump uses parallel execution server processes to implement parallel import.

C.

Data pump import requires the import file to be in a directory owned by the oracle owner.

D.

The master table is the last object to be exported by the data pump.

E.

You can detach from a data pump import job and reattach later.

Question 39

You want a job that performs a bulk insert as soon as the loader file arrives on the local file system.

Which two would you do to accomplish this? (Choose two.)

Options:

A.

Create a file watcher

B.

Create a bulk loader watcher

C.

Create a light weight job for bulk insert

D.

Create an event-based job for bulk insert

E.

Create a job chain with a step for bulk insert

Question 40

Which four are true about creating and running a remote database scheduler jobs? (Choose four.)

Options:

A.

A database destination must exist or be created for the remote database

B.

It must run as a user that is defined on the remote database

C.

Remote database jobs always run as the same user who submits the job on the local database

D.

A credential is optional for a remote database job

E.

A credential must be created to define the remote user

F.

A database destination group must exist or be created for a job to run on multiple remote databases

G.

A destination is optional for a remote database job because DB links can be used instead

Question 41

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.

Question 42

You conned using SQL Plus to the root container of a multitenant container database (CDB) with SYSDBA privilege.

The CDB has several pluggable databases (PDBs) open in the read/write mode.

There are ongoing transactions in both the CDB and PDBs.

What happens alter issuing the SHUTDOWN TRANSACTIONAL statement?

Options:

A.

The shutdown proceeds immediately. The shutdown proceeds as soon as all transactions in the PDBs are either committed or rolled hack.

B.

The shutdown proceeds as soon as all transactions in the CDB are either committed or rolled back.

C.

The shutdown proceeds as soon as all transactions in both the CDB and PDBs are either committed or rolled back.

D.

The statement results in an error because there are open PDBs.

Question 43

After implementing full Oracle Data Redaction, you change the default value for the NUMBER data type as follows:

After changing the value, you notice that FULL redaction continues to redact numeric data with zero.

What must you do to activate the new default value for numeric full redaction?

Options:

A.

Re-enable redaction policies that use FULL data redaction.

B.

Re-create redaction policies that use FULL data redaction.

C.

Re-connect the sessions that access objects with redaction policies defined on them.

D.

Flush the shared pool.

E.

Restart the database instance.

Question 44

You want to capture column group usage and gather extended statistics for better cardinality estimates for the CUSTOMERS table in the SH schema.

Examine the following steps:

1. Issue the SELECT DBMS_STATS.CREATE_EXTENDED_STATS (‘SH’, ‘CUSTOMERS’) FROM dual statement.

2. Execute the DBMS_STATS.SEED_COL_USAGE (null, ‘SH’, 500) procedure.

3. Execute the required queries on the CUSTOMERS table.

4. Issue the SELECT DBMS_STATS.REPORT_COL_USAGE (‘SH’, ‘CUSTOMERS’) FROM dual statement.

Identify the correct sequence of steps.

Options:

A.

3, 2, 1, 4

B.

2, 3, 4, 1

C.

4, 1, 3, 2

D.

3, 2, 4, 1

Question 45

A senior DBA asked you to execute the following command to improve performance:

SQL> ALTER TABLE subscribe log STORAGE (BUFFER_POOL recycle);

You checked the data in the SUBSCRIBE_LOG table and found that it is a large table containing one million rows.

What could be a reason for this recommendation?

Options:

A.

The keep pool is not configured.

B.

Automatic Workarea Management is not configured.

C.

Automatic Shared Memory Management is not enabled.

D.

The data blocks in the SUBSCRIBE_LOG table are rarely accessed.

E.

All the queries on the SUBSCRIBE_LOG table are rewritten to a materialized view.

Question 46

What are two benefits of installing Grid Infrastructure software for a stand-alone server before installing and creating an Oracle database?

Options:

A.

Effectively implements role separation

B.

Enables you to take advantage of Oracle Managed Files.

C.

Automatically registers the database with Oracle Restart.

D.

Helps you to easily upgrade the database from a prior release.

E.

Enables the Installation of Grid Infrastructure files on block or raw devices.

Question 47

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.

Question 48

You ran this command on a source database:

$> expdp hr/hr DIRECTORY=dumpdir DUMPFILE=emp1.dmp VIEWS_AS_TABLES=emp_dept

On the target database, you run this command:

$> impdp hr/hr DIRECTORY=dumpdir DUMPFILE=emp1.dmp VIEWS_AS_TABLES=emp_dept

Which two statements are true? (Choose two.)

Options:

A.

The expdp operation exports all rows for tables contained in the defining query of the EMP_DEPT view

B.

The impdp operation creates separate tables for each table contained in the defining query of the

EMP_DEPT view

C.

The expdp operation exports all rows that are displayed when querying the EMP_DEPT view with no filter

D.

The impdp operation creates EMP_DEPT as a table

E.

The expdp operation exports the table definitions for tables that are queried in the EMP_DEPT view.

F.

The impdp operation creates EMP_DEPT as a view

Question 49

You plan to migrate your database from a File system to Automata Storage Management (ASM) on same platform.

Which two methods or commands would you use to accomplish this task? (Choose two.)

Options:

A.

RMAN CONVERT command

B.

Data Pump Export and import

C.

Conventional Export and Import

D.

The BACKUP AS COPY DATABASE . . . command of RMAN

E.

DBMS_FILE_TRANSFER with transportable tablespace

Question 50

What happens if a maintenance window closes before a job that collects optimizer statistics completes?

Options:

A.

The job is terminated and the gathered statistics are not saved.

B.

The job is terminated but the gathered statistics are not published.

C.

The job continues to run until all statistics are gathered.

D.

The job is terminated and statistics for the remaining objects are collected the next time the maintenance window opens.

Question 51

Which three statements are true concerning the multitenant architecture? (Choose three.)

Options:

A.

Each pluggable database (PDB) has its own set of background processes.

B.

A PDB can have a private temp tablespace.

C.

PDBs can share the sysaux tablespace.

D.

Log switches occur only at the multitenant container database (CDB) level.

E.

Different PDBs can have different default block sizes.

F.

PDBs share a common system tablespace.

G.

Instance recovery is always performed at the CDB level.

Question 52

You administer an online transaction processing (OLTP) system whose database is stored in Automatic Storage Management (ASM) and whose disk group use normal redundancy.

One of the ASM disks goes offline, and is then dropped because it was not brought online before DISK_REPAIR_TIME elapsed.

When the disk is replaced and added back to the disk group, the ensuing rebalance operation is too slow.

Which two recommendations should you make to speed up the rebalance operation if this type of failure happens again? (Choose two.)

Options:

A.

Increase the value of the ASM_POWER_LIMIT parameter.

B.

Set the DISK_REPAIR_TIME disk attribute to a lower value.

C.

Specify the statement that adds the disk back to the disk group.

D.

Increase the number of ASMB processes.

E.

Increase the number of DBWR_IO_SLAVES in the ASM instance.

Question 53

Which three statements are true about using flashback database in a multitenant container database (CDB)? (Choose three.)

Options:

A.

The root container can be flashed back without flashing back the pluggable databases (PDBs).

B.

To enable flashback database, the CDB must be mounted.

C.

Individual PDBs can be flashed back without flashing back the entire CDB.

D.

The DB_FLASHBACK RETENTION_TARGET parameter must be set to enable flashback of the CDB.

E.

A CDB can be flashed back specifying the desired target point in time or an SCN, but not a restore point.

Question 54

You use a recovery catalog for maintaining your database backups.

You execute the following command:

$rman TARGET / CATALOG rman / cat@catdb

RMAN > BACKUP VALIDATE DATABASE ARCHIVELOG ALL;

Which two statements are true? (Choose two.)

Options:

A.

Corrupted blocks, if any, are repaired.

B.

Checks are performed for physical corruptions.

C.

Checks are performed for logical corruptions.

D.

Checks are performed to confirm whether all database files exist in correct locations

E.

Backup sets containing both data files and archive logs are created.

Question 55

Which two statements are true concerning dropping a pluggable database (PDB)? (Choose two.)

Options:

A.

The PDB must be open in read-only mode.

B.

The PDB must be in mount state.

C.

The PDB must be unplugged.

D.

The PDB data files are always removed from disk.

E.

A dropped PDB can never be plugged back into a multitenant container database (CDB).

Question 56

Which task would you recommend before using the Database Upgrade Assistant (DBUA) to upgrade a single-instance Oracle 11g R2 database to Oracle Database 12c?

Options:

A.

shutting down the database instance that is being upgraded

B.

executing the catctl.pl script to run the upgrade processes in parallel

C.

running the Pre-Upgrade Information Tool

D.

copying the listener.ora file to the new ORACLE_HOME

Demo: 56 questions
Total 379 questions