Labour Day Special - 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: c4sdisc65

Note! 1z0-063 has been withdrawn.

1z0-063 Practice Exam Questions with Answers Oracle Database 12c: Advanced Administration Certification

Question # 6

The CATDB12C database contains an Oracle Database 12c catalog schema owned by the RC12C user.

The CATDB11 database contains an Oracle Database l1g catalog schema owned by the RC11 user.

A database with DBID=1423241 is registered in the CATDB11 catalog. Both the recovery catalog databases are open.

In the CATDB12c database, you execute the commands:

1z0-063 question answer

What is the outcome of the import?

A.

It fails because the target database and recovery catalog database are of different versions.

B.

It succeeds and all global scripts in the RC11 catalog that have the same name as existing global scripts in the RC12C catalog are automatically renamed.

C.

It succeeds but the database is not automatically registered in the RC12c catalog.

D.

It fails because RMAN is not connected to the target database with DBID=1423241.

Full Access
Question # 7

Which three statements are true about common roles? (Choose three.)

A.

A common role can be granted only to a common user.

B.

Only system privileges can be granted to a common role in a container database (CDB).

C.

Object privileges can be granted to a common role in a pluggable database (PDB).

D.

A common user that is granted a common role can grant the role to other common and local users in a PDB.

E.

A common role cannot be created by a local user.

Full Access
Question # 8

You notice performance degradation in your production Oracle 12c database. You want to know what caused this performance difference.

Which method or feature should you use?

A.

Database Replay

B.

Automatic Database Diagnostic Monitor (ADDM) Compare Period report

C.

Active Session History (ASH) report

D.

SQL Performance Analyzer

Full Access
Question # 9

You want to create a duplicate database DUP_DB from your production database PROD on the same host. The PROD database uses Automatic Storage Management (ASM) for storage. Regular backups are taken using RMAN connected to a recovery catalog.

You create an auxiliary instance and want to execute the command:

1z0-063 question answer

What is a prerequisite for the successful execution of this command?

A.

The target database must be in MOUNT state.

B.

RMAN must be connected to the target database instance and the auxiliary instance.

C.

A most recent backup set of the PROD database must exist.

D.

Flashback must be enabled for the PROD database.

Full Access
Question # 10

You are connected to a recovery catalog and target database. You execute the command:

RMAN> CATALOG START WITH ‘/disk1/backups’;

Which statement is true?

A.

Only valid data file copies, existing in the /disk1/backups directory, are cataloged.

B.

Only valid backup pieces and archived logs, existing in the /disk1/backups directory, are cataloged.

C.

It lists all the data file copies, backup pieces, and achieved logs cataloged in the recovery catalog in the /disk1/backups directory and its subdirectories.

D.

It lists and catalogs all valid data file copies, backup pieces, and archived logs that exist in all directory paths with the prefix /disk1/backups and their subdirectories.

Full Access
Question # 11

You create a default Flashback Data Archive FLA1 and enable it for the EMPLOYEES table in the HR schema.

After a few days, you want to alter the EMPLOYEES table by executing the command:

SQL> ALTER TABLE EMPLOYEES ADD PHONE NUMBER(12);

Which statement is true about the execution of the command?

A.

It gives an error because DDL statements cannot be executed on a table that is enabled for Flashback Data Archive.

B.

It executes successfully and all metadata related to the EMPLOYEES table before altering the table definition is purged from Flashback Data Archive.

C.

It executes successfully and continues to store metadata related to the EMPLOYEES table.

D.

It executes successfully but Flashback Data Archive is disabled for the EMPLOYEES table.

Full Access
Question # 12

A telecom company wishes to generate monthly bills to include details of customer calls, listed in order of time of call.

Which table organization allows for generating the bills with minimum degree of row sorting?

A.

a hash cluster

B.

an index cluster

C.

a partitioned table

D.

a sorted hash cluster

E.

a heap table with a rowid column

Full Access
Question # 13

View the Exhibit showing steps to create a database resource manager plan.

SQL>execute dbms_resource_manager.create_pendingarea();

PL/SQL procedure successfully completed.

SQL>exec dbms_resource_manager, create_consumergroup (consumer_group=>’OLTP,,comment=>,onlineuser’)

PL/SQL procedure successfully completed.

SQL>exec bras resource_manager.create plan(plan=>’PRIU3ER3',comment=>'dssprio’);

SQL>exec

Dbms_resource_manager.create_plan_directive(plan=>’PRIU3ER3’,group_or_subplan=>'OLTP’,comment=>'onlinegrp'CPU_Pl=>60);

PL/3QLproceduresuccessfullycompleted.

After executing the steps in the exhibit you execute this procedure, which results in an error:

SQL> EXECUTE dbms_resource_manager. validate_pending_area ();

What is the reason for the error?

A.

The pending area is automatically submitted when creating plan directives.

B.

The procedure must be executed before creating any plan directive.

C.

The sys_group group is not included in the resource plan.

D.

The other_groups group is not included in the resource plan.

E.

Pending areas can not be validated until submitted.

Full Access
Question # 14

Examine this command:

SQL> CREATE DATABASE cdb1

DEFAULT TABLESPACE users

DEFAULT TEMPORARY TABLESPACE temp

UNDO TABLESPACE undotbs1

ENABLE PLUGGABLE DATABASE

SEED

SYSTEM DATAFILES SIZE 125M AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED

SYSAUX DATAFILES SIZE 100M;

Which two requirements must be met to ensure that CDB1 is created? (Choose two.)

A.

The ENABLE_PLUGGABLE_DATABASE parameter must be set to TRUE.

B.

The PDB_FILE_NAME_CONVERT parameter must be configured.

C.

The FILE_NAME_CONVERT clause must be added to the command.

D.

The USER_DATA TABLESPACE clause must be added to the command.

E.

The DB_CREATE_FILE_DEST parameter must be configured.

Full Access
Question # 15

Your multitenant container database (CDB) CDB1 that is running in ARCHIVELOG mode contains two pluggable databases (PDBs), PDB2_1 and PDB2_2, both of which are open. RMAN is connected to the target pluggable database PDB2_1.

RMAN> BACKUP DATABASE PLUS ARCHIVELOG DELETE INPUT;

Which statement is true about the execution of this command to back up the database?

A.

All data files belonging to PDB2_1 are backed up and all archive log files are deleted.

B.

All data files belonging to PDB2_1 are backed up along with the archive log files.

C.

Only the data files belonging to pdb2_1 are backed up.

D.

This command gives an error because archive log files can be backed up only when RMAN is connected to the root container database.

Full Access
Question # 16

Examine the commands:

SQL> ALTER SESSION SET RECYCLEBIN = ON;

Session altered.

SQL> DROP TABLE emp; --(First EMP table)

Table dropped.

SQL> CREATE TABLE emp(id NUMBER CONSTRAINT emp_id_idx PRIMARY KEY, name VARCHAR2 (15), salary NUMBER(7,2));

Table created.

You then execute multiple INSERT statements to insert rows into the EMP table and drop the table again:

SQL> DROP TABLE emp; -- (Second EMP table)

Table dropped.

SQL> FLASHBACK TABLE emp TO BEFORE DROP;

Which statement is true about the FLASHBACK command?

A.

It recovers the structure, data, and indexes of the first EMP table.

B.

It recovers only the structure of the second EMP table.

C.

It returns an error because two tables with the same name exist in the recycle bin.

D.

It recovers the structure, data, and indexes of the second EMP table.

Full Access
Question # 17

You want to reduce fragmentation and reclaim unused space for the sales table but not its dependent objects. During this operation, you want to ensure the following:

i. Long-running queries are not affected.

ii. No extra space is used.

iii. Data manipulation language (DML) operations on the table succeed at all times throughout the process.

iv. Unused space is reclaimed both above and below the high water mark.

Which alter TABLE option would you recommend?

A.

DEALLOCATE UNUSED

B.

SHRINK SPACE CASCADE

C.

SHRINK SPACE COMPACT

D.

ROW STORE COMPRESS BASIC

Full Access
Question # 18

You use RMAN to take regular backups for your database.

Examine the RMAN commands:

RMAN> CROSSCHECK BACKUP;

RMAN> DELETE EXPITED BACKUP;

Which statement is true?

A.

All backups and archived redo log files that are not required for the recovery are deleted and the repository is updated.

B.

All metadata, for backups and archived redo log files that are recorded in the repository but do not exist on disk or media, is deleted.

C.

All backups that have exceeded the age set by the RMAN retention policy are deleted.

D.

All metadata pertaining to backups and archived redo log files that have exceeded the age set by the RMAN retention policy are deleted from the repository.

Full Access
Question # 19

In which three scenarios is media recovery required? (Choose three.)

A.

when a tablespace is accidentally dropped from a database

B.

when archived redo log files are lost

C.

when data files are lost

D.

when one of the online redo log members is corrupted

E.

when all control files are lost

Full Access
Question # 20

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

SQL> SELECT NUMBER_VALUE FROM REDACTION_VALUES_FOR_TYPE_FULL; NUMBER_VALUE

-------------------------

0

SQL> EXEC DBMS_REDACT.UPDATE_FULL_REDACTI0N_VALUES(-1)

PL/SQL procedure successfully completed.

SQL> select number_value from redaction_values_for_type_full;

NUMBER VALUE

------------------------

-1

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

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

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.

Full Access
Question # 21

You wish to create jobs to satisfy these requirements:

1. Automatically bulk load data from a flat file.

2. Rebuild indexes on the SALES table after completion of the bulk load.

How would you create these jobs?

A.

Create both jobs by using Scheduler raised events.

B.

Create both jobs using application raised events.

C.

Create one job to rebuild indexes using application raised events and another job to perform bulk load using Scheduler raised events.

D.

Create one job to rebuild indexes using Scheduler raised events and another job to perform bulk load by using events raised by the application.

Full Access
Question # 22

You want to consolidate backup information and centrally manage backup and recovery scripts for multiple databases running in your organization.

Which two backup solutions can be used? (Choose two.)

A.

RMAN recovery catalog

B.

RMAN Media Management Library

C.

Enterprise Manager Cloud Control

D.

Enterprise Manager Database Express

E.

Oracle Secure Backup

Full Access
Question # 23

Your database is running on the host OUSERVER. You back up your database regularly using RMAN and the backups are cataloged in a recovery catalog. For testing purposes, you want to replicate your database to another host, OUSERVER1, with the same directory structure. So, you copy the backups to the new host.

What must you do to make the database operational in OUSERVER1?

A.

Restore the control file from the backup by using the CATALOG option, restore the data files by using the SET NEWNAME command, and recover the data files.

B.

Restore the data files by using the NOCATALOG option and use the SET NEWNAME command to change the location.

C.

Restore the control file from the backup by using the NOCATALOG option, and then restore and recover the data files.

D.

Restore the data files from the backup by using the recovery catalog, use the SWITCH command to change the location, and recover the data files.

Full Access
Question # 24

Examine this command:

1z0-063 question answer

Which two statements are true after successful execution? (Choose two.)

A.

PDB2 will be open read-only.

B.

PDB2 will be in MOUNT state.

C.

A metadata description of PDB2 is stored in an XML file in ‘/disk2/oracle/pdb2/’.

D.

A metadata description of PDB2 is stored in the system tablespace of PDB1.

E.

PDB2 will use shared UNDO.

Full Access
Question # 25

One of your databases is in ARCHIVELOG mode and take nightly RMAN backups.

The USERS and IDX tablespaces are missing due to storage array errors.

Which four actions would recover the tablespaces and their contents while the database remains open? (Choose four.)

A.

Bring both tablespaces ONLINE.

B.

Recover both tablespaces.

C.

Take both tablespaces OFFLINE NORMAL.

D.

Take both tablespaces OFFLINE IMMEDIATE.

E.

Restore both tablespaces from the most recent backup.

F.

Bring both tablespaces ONLINE and rebuild all the instances in the IDX tablespace.

Full Access
Question # 26

You notice that the performance of your production 24x7 Oracle 12c database has significantly degraded. Sometimes, you are not able to connect to the database instance because it hangs.

How can you detect the cause of the degraded performance?

A.

by performing emergency monitoring using Real-Time Automatic Database Diagnostic Monitor (ADDM) to fetch data directly from SGA for analysis

B.

by running ADDM to fetch information from the latest Automatic Workload Repository (AWR) snapshots

C.

by using Active Session History (ASH) data and performing hang analysis

D.

by running ADDM in diagnostic mode

Full Access
Question # 27

Which statement is true about the ALTER SESSION SET CONTAINER command to switch between containers?

A.

It can be executed only from CDB$ROOT.

B.

It rolls back any pending transactions in the container from which it is executed.

C.

It will not fire login triggers for the specified container.

D.

It cannot be used to connect to PDB$SEED.

E.

It cannot be used to connect to CDB$ROOT from a pluggable database (PDB).

Full Access
Question # 28

You are administering a multitenant container database (CDB) that has no startup triggers and contains three pluggable databases (PDBs).

You execute the command to start up the CDB:

SQL> STARTUP

Which statement is true?

A.

CDB$ROOT, PDB$SEED, and the PDBs are opened in read-only mode.

B.

CDB$ROOT and PDB$SEED are opened in read-only mode, but the PDBs are in closed mode.

C.

CDB$ROOT is opened in read/write mode, but PDB$SEED and the PDBs are in closed mode.

D.

CDB$ROOT is opened in read/write mode, PDB$SEED in read-only mode, and the PDBs in MOUNT state.

E.

CDB$ROOT, PDB$SEED, and the PDBs are opened in read/write mode.

Full Access
Question # 29

A complete database backup to media is taken for your database every day. Which three actions would you take to improve backup performance? (Choose three.)

A.

Set the backup_tape_io_slaves parameter to true.

B.

Set the dbwr_io_slaves parameter to a nonzero value if synchronous I/O is in use.

C.

Configure large pool if not already done.

D.

Remove the rate parameter, if specified, in the allocate channel command.

E.

Always use RMAN compression for tape backups rather than the compression provided by media manager.

F.

Always use synchronous I/O for the database.

Full Access
Question # 30

Examine the resources consumed by a database instance whose current Resource Manager plan is displayed.

SQL> SELECT name, active_sessions, queue_length,

consumed_cpu_time, cpu_waits, cpu_wait_time

FROM v$rsrc_consumer_group;

1z0-063 question answer

Which two statements are true? (Choose two.)

A.

An attempt to start a new session by a user belonging to DSS_QUERIES fails with an error.

B.

An attempt to start a new session by a user belonging to OTHE_GROUPS fails with an error.

C.

The CPU_WAIT_TIME column indicates the total time that sessions in the consumer group waited for the CPU due to resource management.

D.

The CPU_WAIT_TIME column indicates the total time that sessions in the consumer group waited for the CPU due to I/O waits and latch or enqueue contention.

E.

A user belonging to the DSS_QUERIES resource consumer group can create a new session but the session will be queued.

Full Access
Question # 31

Which two are true about RMAN image copies? (Choose two.)

A.

The can only be written to disk.

B.

They are the only backup option available for database in NOARCHIVELOG mode.

C.

They can be encrypted using Transparent Data Encryption (TDE).

D.

They can be used as a level 0 incremental backup.

Full Access
Question # 32

Identify three benefits of unified auditing. (Choose three.)

A.

It helps to reduce disk space used to store an audit trail in a database.

B.

It guarantees zero-loss auditing.

C.

It reduces overhead on a database caused by auditing, by having a single audit trail.

D.

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

E.

It automatically audits Recovery Manager (RMAN) events.

Full Access
Question # 33

Your database is on ARCHIVELOG mode and an incremental backup exists.

A media failure in the loss of a data file and an online redo log.

Examine these commands:

1. STARTUP NOMOUNT

2. STARTUP MOUNT

3. RESTORE DATABASE

4. RECOVER DATABASE

5. RECOVER DATABASE UNTIL CANCEL

6. ALTER DATABASE OPEN

7. ALTER DATABASE OPEN RESETLOGS

Which commands are required to recover your database?

A.

2, 3, 5, and 6

B.

2, 3, and 4

C.

2, 3, 5, and 7

D.

1, 3, 5, and 6

E.

1, 3, and 4

Full Access
Question # 34

You create a table with the period for clause to enable the use of the Temporal Validity feature of Oracle Database 12c.

Examine the table definition:

create table employees

(empno number, salary number,

deptid number, name varchar2(100),

period for employee_time);

Which three statements are true concerning the use of the Valid Time Temporal feature for the EMPLOYEES table? (Choose three.)

A.

The valid time columns employee_time_start and employee_time_end are automatically created.

B.

The same statement may filter on both transaction time and valid temporal time by using the AS OF TIMESTAMP and PERIOD FOR clauses.

C.

The valid time columns are not populated by the Oracle Server automatically.

D.

The valid time columns are visible by default when the table is described.

E.

Setting the session valid time using DBMS_FLASHBACK_ARCHIVE.ENABLE_AT_VALID_TIME sets the visibility for data manipulation language (DML), data definition language (DDL), and queries performed by the session.

Full Access
Question # 35

Your database is running in ARCHIVELOG mode and flashback is enabled.

In which scenario must you use RMAN backups for recovering tables and table partitions?

A.

when recovering a table to a point in time

B.

when recovering a table that has been logically corrupted

C.

when recovering dropped tables that are present in the recyclebin

D.

when recovering the data of a table to the desired point in time, which is more recent than the oldest available undo

E.

when recovering data that was lost after a DDL operation modified the structure of a table

Full Access
Question # 36

Your multitenant container database (CDB) CDB1, which has no startup triggers and contains multiple pluggable databases (PDBs), is started up by using the command:

SQL> STARTUP

Which two statements are true about the successful execution of the command? (Choose two.)

A.

All redo log files are opened.

B.

The root, the seed, and all the PDBs are opened in read-write mode.

C.

All the PDBs are opened in read-write mode.

D.

All the PDBs are in closed state.

E.

Only the root database is opened in read-write mode.

Full Access
Question # 37

You execute the RMAN commands:

RMAN> BACKUP VALIDATE DATABASE;

RMAN> RECOVER CORRUPTION LIST;

Which task is performed by these commands?

A.

Corrupted blocks, if any, are repaired in the backup created.

B.

Only those data files that have corrupted blocks are backed up.

C.

Corrupted blocks in the data files are checked and repaired before performing the database backup.

D.

The database is checked for physically corrupt blocks and any corrupted blocks are repaired.

Full Access
Question # 38

Examine the command:

SQL> RECOVER DATABASE USING BACKUP CONTROLFILE UNTIL CANCEL;

In which two scenarios is this command required? (Choose two.)

A.

The current online redo log file is missing.

B.

A data file belonging to a noncritical tablespace is missing.

C.

All the control files are missing.

D.

The control file backup is older than the database backup.

E.

All the data files are missing.

Full Access
Question # 39

While performing database backup to tape via the media manager interface, you notice that tape streaming is not happening because RMAN is not sending data blocks fast enough to the tape drive.

Which two actions would you take for tape streaming to happen during the backup? (Choose two.)

A.

Configure backup optimization.

B.

Configure the channel to increase maxopenfiles.

C.

Configure a backup policy by using incremental backups.

D.

Configure the channel to increase capacity with the rate parameter.

E.

Configure the channel to adjust the tape buffer size by using the 3LKSIZE option.

F.

Configure large_pool, if not done already. Alternatively, you can increase the size of large_pool.

Full Access
Question # 40

You create a new database by using the CREATE DATABASE command in SQL*Plus, with the ENABLE PLUGGABLE DATABASE clause specified.

Which statement is true about the database that is created?

A.

It is created as a container database (CDB) with CDB$ROOT, PDB$SEED, and a pluggable database (PDB).

B.

It is created as a non-CDB that becomes a CDB after the first PDB is plugged in.

C.

It is created as a PDB that must be plugged into an existing CDB.

D.

It is created as a CDB with the CDB$ROOT and PDB$SEED databases.

Full Access
Question # 41

Identify three reasons for using a recovery catalog with Recovery Manager (RMAN). (Choose three.)

A.

to store backup information of multiple databases in one place

B.

to restrict the amount of space that is used by backups

C.

to maintain a backup for an indefinite period of time by using the KEEP FOREVER clause

D.

to store RMAN scripts that are available to any RMAN client that can connect to target databases registered in the recovery catalog

E.

to automatically delete obsolete backups after a specified period of time

Full Access