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

Note! 1z0-062 has been withdrawn.

1z0-062 Practice Exam Questions with Answers Oracle Database 12c: Installation and Administration Certification

Question # 6

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

1z0-062 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 OTHER_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 # 7

Which two statements are true about Oracle Managed Files (OMF)? (Choose two.)

A.

OMF cannot be used in a database that already has data files created with user-specified directions.

B.

The file system directions that are specified by OMF parameters are created automatically.

C.

OMF can be used with ASM disk groups, as well as with raw devices, for better file management.

D.

OMF automatically creates unique file names for table spaces and control files.

E.

OMF may affect the location of the redo log files and archived log files.

Full Access
Question # 8

Which files must you copy from the Oracle home of the database that is being upgraded to the new Oracle home for Oracle Database 12c? (Choose three.)

A.

the tnsnames.ora file

B.

the sqlnet.ora file

C.

the initialization parameter file

D.

the password file

E.

the listener.ora file

Full Access
Question # 9

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

A.

It prompts the Checkpoint (CKPT) process to write data to the data files and redo information to the online redo log files.

B.

It ensures that all dirty buffers are written to data files during consistent shutdown.

C.

It reduces the time required for recovery in case of an instance failure.

D.

Frequent thread checkpoints can degrade database performance.

E.

It prompts the Database Writer (DBWn) process to write checkpoint information into data file headers and the control file.

Full Access
Question # 10

A warehouse fact table in your Oracle 12c Database is range-partitioned by month and accessed frequently with queries that span multiple partitions

The table has a local prefixed, range partitioned index.

Some of these queries access very few rows in some partitions and all the rows in other partitions, but these queries still perform a full scan for all accessed partitions.

This commonly occurs when the range of dates begins at the end of a month or ends close to the start of a month.

You want an execution plan to be generated that uses indexed access when only a few rows are accessed from a segment, while still allowing full scans for segments where many rows are returned.

Which three methods could transparently help to achieve this result? (Choose three.)

A.

Using a partial local Index on the warehouse fact table month column with indexing disabled to the table partitions that return most of their rows to the queries.

B.

Using a partial local Index on the warehouse fact table month column with indexing disabled for the table partitions that return a few rows to the queries.

C.

Using a partitioned view that does a UNION ALL query on the partitions of the warehouse fact table, which retains the existing local partitioned column.

D.

Converting the partitioned table to a partitioned view that does a UNION ALL query on the monthly tables, which retains the existing local partitioned column.

E.

Using a partial global index on the warehouse fact table month column with indexing disabling for the table partitions that return most of their rows to the queries.

F.

Using a partial global index on the warehouse fact table month column with indexing disabled for the table partitions that return a few rows to the queries.

Full Access
Question # 11

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

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

Full Access
Question # 12

Identify two correct statements about multitenant architectures.

A.

Multitenant architecture can be deployed only in a Real Application Clusters (RAC) configuration.

B.

Multiple pluggable databases (PDBs) share certain multitenant container database (CDB) resources.

C.

Multiple CDBs share certain PDB resources.

D.

Multiple non-RAC CDB instances can mount the same PDB as long as they are on the same server.

E.

Patches are always applied at the CDB level.

F.

A PDB can have a private undo tablespace.

Full Access
Question # 13

A database instance is started by using an SPFILE. The database is configured in ARCHIVELOG mode and the control file autobackup is configured. Daily full database backups are performed by using RMAN.

You lost all control files due to media failure.

Given the steps to recover from the error in random order:

1. Shut down the instance, if it is not already down.

2. Restore the control file from autobackup to a new location.

3. Start the database instance to NOMOUNT state.

4. Recover the database to the point of failure of the control file.

5. Open the database with the RESETLOGS option.

6. Mount the database.

7. Update the SPFILE with the new location of the control file by using the ALTER SYSTEM command.

Identify the correct sequence of the required steps.

A.

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

B.

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

C.

1, 3, 2, 4, 5

D.

1, 2, 6, 4, 5

E.

1, 6, 2, 4, 5

Full Access
Question # 14

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

1z0-062 question answer

Which two statements are true? (Choose two.)

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 are granted to the C##A_ADMIN user only in the root database.

D.

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

E.

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

Full Access
Question # 15

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

1z0-062 question answer

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

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.

Full Access
Question # 16

The user SCOTT owns the CUST table that is placed in the SALES tablespace. The user SCOTT opens a session and executes commands as follows:

SQL> INSERT INTO cust VALUES(101, 'JACK');

1 row created.

SQL> INSERT INTO cust VALUES(102, 'SMITH');

1 row created.

As a DBA, you execute the following command from another session:

ALTER TABLESPACE sales READ ONLY;

Which statement is true regarding the effect of this command on the transaction in Scott's session?

A.

The command fails as a transaction is still pending.

B.

The transaction in Scott's session is rolled back and the tablespace becomes readonly.

C.

The command waits and the user SCOTT can execute data manipulation language (DML) statements only as part of the current transaction.

D.

The command hangs until all transactions on the objects in the tablespace commit or rollback, and then the tablespace is placed in readonly mode.

Full Access
Question # 17

In order to exploit some new storage tiers that have been provisioned by a storage administrator, the partitions of a large heap table must be moved to other tablespaces in your Oracle 12c database?

Both local and global partitioned B-tree Indexes are defined on the table.

A high volume of transactions access the table during the day and a medium volume of transactions access it at night and during weekends.

Minimal disrupt ion to availability is required.

Which three statements are true about this requirement? (Choose three.)

A.

The partitions can be moved online to new tablespaces.

B.

Global indexes must be rebuilt manually after moving the partitions.

C.

The partitions can be compressed in the same tablespaces.

D.

The partitions can be compressed in the new tablespaces.

E.

Local indexes must be rebuilt manually after moving the partitions.

Full Access
Question # 18

Which three statements are true about automated maintenance tasks? (Choose three.)

A.

They run at predefined time intervals that are intended to occur during a period of low system load.

B.

An Oracle Scheduler job is created for each maintenance task that is scheduled to run in a maintenance window.

C.

A maintenance window is automatically extended until all the maintenance tasks defined are completed.

D.

D. A repository is maintained in the SYSTEM tablespace to store the history of execution of all tasks.

E.

Predefined maintenance tasks consist of automatic optimizer statistics collection, running Automatic Segment Advisor, and running Automatic SQL Tuning Advisor.

Full Access
Question # 19

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

Full Access
Question # 20

Which three statements are true about the Pre-Upgrade Information Tool? (Choose three.)

A.

It generates a script to recompile invalid objects post-upgrade.

B.

The preupgrade_fixups.sql script is created to list and describe issues in the source database.

C.

A log file, preupgrade.log, is created that contains the output of the Pre-Upgrade Information tool.

D.

It checks for required tablespaces and if they are not available, creates them automatically.

E.

The preupgrade_fixups.sql script is executed automatically to fix issues in the source database.

F.

The postupgrade_fixups.sql script is created to address issues that can be fixed after a database has been upgraded.

Full Access
Question # 21

Flashback is enabled for your multitenant container database (CDB), which contains two pluggable database (PDBs). A local user was accidently dropped from one of the PDBs.

You want to flash back the PDB to the time before the local user was dropped. You connect to the CDB and execute the following commands:

SQL > SHUTDOWN IMMEDIATE

SQL > STARTUP MOUNT

SQL > FLASHBACK DATABASE to TIME “TO_DATE (‘08/20/12’ , ‘MM/DD/YY’)”;

Examine following commands:

1. ALTER PLUGGABLE DATABASE ALL OPEN;

2. ALTER DATABASE OPEN;

3. ALTER DATABASE OPEN RESETLOGS;

Which command or commands should you execute next to allow updates to the flashback back schema?

A.

Only 1

B.

Only 2

C.

Only 3

D.

3 and 1

E.

1 and 2

Full Access
Question # 22

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.)

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.

Full Access
Question # 23

Which three activities are supported by the Data Recovery Advisor? (Choose three.)

A.

Advising on block checksum failures

B.

Advising on inaccessible control files

C.

Advising on inaccessible block change tracking files

D.

Advising on empty password files

E.

Advising on invalid block header field values

Full Access
Question # 24

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?

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.

Full Access
Question # 25

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?

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.

Full Access
Question # 26

Which three factors influence the optimizer's choice of an execution plan? (Choose three.)

A.

the optimizer_mode initialization parameter

B.

operating system (OS) statistics

C.

cardinality estimates

D.

object statistics in the data dictionary

E.

fixed baselines

Full Access
Question # 27

Which statement is true regarding the startup of a database instance?

A.

The instance does not start up normally and requires manual media recovery after a shutdown using the ABORT option.

B.

Uncommitted transactions are rolled back during the startup of the database instance after a shutdown using the immediate option.

C.

There is no difference in the underlying mechanics of the startup whether the database is shut down by using the IMMEDIATE option or the ABORT option.

D.

Media recovery is required when the database is shut down by using either the IMMEDIATE option or the ABORT option.

E.

Instance recovery is not required if the database instance was shut down by using SHUTDOWN IMMEDIATE.

Full Access
Question # 28

You execute the commands:

1z0-062 question answer

Which two statements are true? (Choose two.)

A.

The create user command fails if any role with the name Sidney exists in the database.

B.

The user Sidney can connect to the database instance but cannot perform sort operations because no space quota is specified for the temp tablespace.

C.

The user Sidney is created but cannot connect to the database instance because no profile is default.

D.

The user Sidney can connect to the database instance but requires relevant privileges to create objects in the users tablespace.

E.

The user Sidney is created and authenticated by the operating system.

Full Access
Question # 29

You notice a performance change in your production Oracle 12c database. You want to know which change caused this performance difference.

Which method or feature should you use?

A.

Compare Period ADDM report

B.

AWR Compare Period report

C.

Active Session History (ASH) report

D.

Taking a new snapshot and comparing it with a preserved snapshot

Full Access
Question # 30

You performed an incremental level 0 backup of a database:

RMAN > BACKUP INCREMENTAL LEVEL 0 DATABASE;

To enable block change tracking after the incremental level 0 backup, you issued this command:

SQL > ALTER DATABASE ENABLE BLOCK CHANGE TRACKING USING FILE

‘ /mydir/rman_change_track.f’;

To perform an incremental level 1 cumulative backup, you issued this command:

RMAN> BACKUP INCREMENTAL LEVEL 1 CUMULATIVE DATABASE;

Which three statements are true? (Choose three.)

A.

Backup change tracking will sometimes reduce I/O performed during cumulative incremental backups.

B.

The change tracking file must always be backed up when you perform a full database backup.

C.

Block change tracking will always reduce I/O performed during cumulative incremental backups.

D.

More than one database block may be read by an incremental backup for a change made to a single block.

E.

The incremental level 1 backup that immediately follows the enabling of block change tracking will not read the change tracking file to discover changed blocks.

Full Access
Question # 31

Which two statements are true about using SQL*Loader? (Choose two.)

A.

It can load data from external files by using the direct path only.

B.

It can load data into multiple tables using the same load statement.

C.

It can load data into only one table at a time.

D.

It can generate unique sequential key values in specified columns.

E.

It can load data from external files by using the conventional path only.

Full Access
Question # 32

You want to load data from a large file into your database without causing an overhead on the SGA.

Which tool would you use.

A.

external table

B.

Oracle data Pump

C.

SQL*Loader with a direct data path

D.

SQL*Loader with a conventional data path

E.

Enterprise Manager Database Express

Full Access
Question # 33

Which two categories of segments are analyzed by the Automatic Segment Advisor? (Choose two.)

A.

segments in tablespaces that have exceeded a critical or warning space threshold

B.

segments that have the highest growth rate in a database

C.

segments that are sparsely populated and have more than 10% of free space below the high water mark.

D.

segments that have unusable indexes

E.

segments for tables created using ADVANCED ROW COMPRESSION

Full Access
Question # 34

Because of a logical corruption in the EMPLOYES tables, you want to perform Tablespace Point-in-Time Recovery (TSPITR) to recover the table. Before you started the TSPITR process, you queried the TS_PITR_CHECK view and you realized that the table has a referential constraint with DEPARTMENTS that exists in another tablespace, MASTERTBS. Which two actions will permit the TSPITR to work? (Choose two.)

A.

Taking the MASTERTBS tablespace offline

B.

Dropping the relationship between the tables

C.

Adding the MASTERTBS tablespace to the recovery set

D.

Putting the MASTERTBS tablespace in read-only mode

Full Access
Question # 35

Your database supports a Decision Support System (DSS) workload that involves the execution of complex queries. Currently, the database is running with peak workload. You want to analyze some of the most resource-intensive statements cached in the library cache.

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

A.

Automatic Database Diagnostic Monitor (ADDM)

B.

SQL Tuning Advisor

C.

SQL Access Advisor

D.

SQL Performance Analyzer

E.

Automatic Workload Repository (AWR) report

Full Access
Question # 36

The HR user owns the BONUSES table. HR grants privileges to the user TOM by using the command:

SQL> GRANT SELECT ON bonuses TO tom WITH GRANT OPTION;

TOM then executes this command to grant privileges to the user JIM:

SQL> GRANT SELET ON hr.bonuses TO jim;

Which statement is true?

A.

TOM cannot revoke the SELECT ON HR.BONUSES privilege from JIM.

B.

HR can revoke the SELECT ON HR.BONUSES privilege from JIM.

C.

JIM can grant the SELECT ON HR.BONUSES privilege to other users, but cannot revoke the privilege from them.

D.

HR can revoke the SELECT ON HR.BONUSES privilege from TOM, which will automatically revoke the SELECT ON HR.BONUSES privilege from JIM.

Full Access
Question # 37

Examine these statements:

1z0-062 question answer

Which three are true about the effects of executing these statements? (Choose three.)

A.

The HR account will get locked by Oracle after ten consecutive failed login attempts.

B.

User HR is permitted to create more than three concurrent sessions.

C.

Password complexity checking is enforced for user HR.

D.

User HR sessions will terminate after ten minutes of continuous inactivity.

E.

The HR account will be locked after three consecutive failed login attempts.

F.

The password complexity will not enforce on the HR account.

Full Access
Question # 38

Identify three situations in which messages are written to the alert log file. (Choose three.)

A.

Rebuilding an index using ALTER INDEX . . . REBUILD fails with an ORA-01578: ORACLE data block corrupted (file # 14, block # 50)"

B.

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

C.

Inserting a value into a table returns "ORA-01722: invalid number"

D.

Updating a record in a table returns "ORA-00060: deadlock detected while waiting for resource"

E.

Inserting a value into a table returns "ORA-00001: unique constraint (SYS.PK_XXXX) violated"

F.

Running a query on a table returns "ORA-01578: ORACLE data block corrupted (file # 4, block # 131)"

Full Access
Question # 39

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.

A.

4, 2, 5, 1, 6

B.

1, 2, 3, 4, 6

C.

2, 3, 1, 6

D.

2, 5, 1, 6

Full Access
Question # 40

The schema SALES exists in two databases, ORCL1 and ORCL2, and has the same password, SALES123.

User SALES has CREATE DATABASE LINK and CREATE SESSION privileges on both databases.

Examine these commands:

Conn SALES/SALES123

CREATE DATABASE LINK orcl2 USING 'orcl2';

What is the outcome of executing these commands in the ORCL1 database?

A.

ORCL2 is created as a public database link to connect a single session to the SALES schema in the ORCL2 database.

B.

ORCL2 is created as a shared database link to connect multiple sessions to the SALES schema in the ORCL2 database.

C.

ORCL2 is created as a private database link to connect to only the SALES schema in the ORCL2 database.

D.

ORCL2 database link creation fails.

Full Access
Question # 41

Which three are activities performed by SMON? (Choose three.)

A.

cleaning up the database buffer cache and freeing resources that a client process was using

B.

applying online redo during instance recovery

C.

cleaning up temporary segments that are no longer needed

D.

performing database services registration with the default listener

E.

restarting a server or a dispatcher process that terminated abnormally

F.

recovering failed transactions that were skipped during instance recovery because of file-read or tablespace offline errors

Full Access
Question # 42

In one of your databases, unified auditing is enabled and an SH.SALES table exists.

You can successfully execute these commands:

1z0-062 question answer

Which statement is true about SALES_POL?

A.

Audit records are always stored in an external audit file.

B.

It is enabled for all users having SELECT privilege on SH.SALES.

C.

It is only enabled for SH.

D.

Only successful queries of SH.SALES are written to the audit trail.

Full Access
Question # 43

Which three statements are true about Database Resource Manager? (Choose three.)

A.

A resource plan change can be automated by using the Oracle Scheduler.

B.

It can be used to control the consumption of only physical I/Os where excessive physical I/Os can trigger an automatic session termination but excessive logical I/Os cannot.

C.

It can be used to control the usage of the undo tablespace by consumer groups.

D.

A resource plan can have multiple resource plan directives, each of which controls resource allocation for a different consumer group.

E.

It can be used to enable resumable timeout for user sessions.

F.

It can be used to control the usage of the temp tablespace by consumer groups.

Full Access
Question # 44

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

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.

Full Access
Question # 45

You install “Oracle Grid Infrastructure for a standalone server” on a host on which the ORCL1 and ORCL2 databases both have their instances running.

Which two statements are true? (Choose two.)

A.

All databases subsequently created by using the Database Configuration Assistant (DBCA) are automatically added to the Oracle Restart configuration.

B.

The srvctl add database command must be used to add ORCL1 and ORCL2 to the ORACLE Restart configuration.

C.

Both ORCL1 and ORCL2 are automatically added to the Oracle Restart configuration.

D.

All database listeners running from the database home are automatically added to the Oracle Restart configuration.

E.

The crsctl start has command must be used to start software services for Oracle Automatic Storage Management (ASM) after the “Oracle Grid Infrastructure for a standalone server” installation is complete.

Full Access
Question # 46

You want to create a table, DAILY_ORDERS, for an OLTP application, where data should be compressed during both direct-path INSERT and conventional DML. The table will also be used for queries.

Which compression option should be used?

A.

ROW STORE COMPRESS

B.

COLUMN STORE COMPRESS FOR QUERY

C.

COLUMN STORE COMPRESS FOR ARCHIVE LOW

D.

ROW STORE COMPRESS ADVANCED

Full Access
Question # 47

The HR.DEPARTMENTS table is the parent of the HR.EMPLOYEES table. The EMPLOYEES.DEPARTMENT_ID column has a foreign key constraint with the ON DELETE CASCADE option that refers to the DEPARTMENTS.DEPARTMENT_ID column. An index exists on the DEPARTMENTS.DEPARTMENT_ID column. A transaction deletes a primary key in the DEPARTMENTS table, which has child rows in the EMPLOYEES table.

Which statement is true?

A.

The transaction acquires a table lock only on the DEPARTMENTS table until the transaction is complete.

B.

The transaction acquires a table lock on the DEPARTMENTS table. This lock enables other sessions to query but not update the DEPARTMENTS table until the transaction on the DEPARTMENTS table is complete.

C.

The transaction acquires a table lock on the EMPLOYEES table. This lock enables other sessions to query but not update the EMPLOYEES table until the transaction on the DEPARTMENTS table is complete.

D.

Only the rows that are deleted in the DEPARTMENTS and EMPLOYEES tables are locked until the transactions on the DEPARTMENTS table is complete.

Full Access
Question # 48

You are about to plug a multi-terabyte non-CDB into an existing multitenant container database (CDB).

The characteristics of the non-CDB are as follows:

– Version: Oracle Database 11g Release 2 (11.2.0.2.0) 64-bit

– Character set: AL32UTF8

– National character set: AL16UTF16

– O/S: Oracle Linux 6 64-bit

The characteristics of the CDB are as follows:

– Version: Oracle Database 12c Release 1 64-bit

– Character Set: AL32UTF8

– National character set: AL16UTF16

– O/S: Oracle Linux 6 64-bit

Which technique should you use to minimize down time while plugging this non-CDB into the CDB?

A.

Transportable database

B.

Transportable tablespace

C.

Data Pump full export/import

D.

The DBMS_PDB package

E.

RMAN

Full Access
Question # 49

Identify three valid options for adding a pluggable database (PDB) to an existing multitenant container database (CDB).

A.

Use the CREATE PLUGGABLE DATABASE statement to create a PDB using the files from the SEED.

B.

Use the CREATE DATABASE . . . ENABLE PLUGGABLE DATABASE statement to provision a PDB by copying file from the SEED.

C.

Use the DBMS_PDB package to clone an existing PDB.

D.

Use the DBMS_PDB package to plug an Oracle 12c non-CDB database into an existing CDB.

E.

Use the DBMS_PDB package to plug an Oracle 11 g Release 2 (11.2.0.3.0) non-CDB database into an existing CDB.

Full Access
Question # 50

Examine the parameters for your database instance:

1z0-062 question answer

You execute the following command:

SQL> ALTER TABLESPACE undotbs1 RETENTION NOGUARANTEE;

Which statement is true in this scenario?

A.

Undo data is written to flashback logs after 1200 seconds.

B.

Inactive undo data is retained for 1200 seconds even if subsequent transactions fail due to lack of space in the undo tablespace.

C.

You can perform a Flashback Database operation only within the duration of 1200 seconds.

D.

An attempt is made to keep inactive undo for 1200 seconds but transactions may overwrite the undo before that time has elapsed.

Full Access
Question # 51

Examine the parameter for your database instance:

1z0-062 question answer

You generated the execution plan for the following query in the plan table and noticed that the nested loop join was done. After actual execution of the query, you notice that the hash join was done in the execution plan:

1z0-062 question answer

Identify the reason why the optimizer chose different execution plans.

A.

The optimizer used a dynamic plan for the query.

B.

The optimizer chose different plans because automatic dynamic sampling was enabled.

C.

The optimizer used re-optimization cardinality feedback for the query.

D.

The optimizer chose different plan because extended statistics were created for the columns used.

Full Access
Question # 52

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

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.

Full Access
Question # 53

Examine the parameters for a database instance:

1z0-062 question answer

Which two statements are true? (Choose two.)

A.

Undo records for temporary tables are stored in a temporary tablespace.

B.

Undo records for temporary tables are stored in the undo tablespace and logged in the redo.

C.

Undo records for temporary tables are stored in the undo tablespace and logged in the redo only for those sessions where temporary undo is enabled.

D.

No redo is generated for the undo records belonging to temporary tables.

E.

No redo and undo records are generated for temporary tables.

Full Access
Question # 54

Identify two situations in which the alert log file is updated.

A.

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

B.

Inserting a value into a table returns ORA-01722: invalid number.

C.

Creating a table returns ORA-00955: name us already in used by an existing objects.

D.

Inserting a value into a table returns ORA-00001: unique constraint (SYS.OK_TECHP) violated.

E.

Rebuilding an index using ALTER INDEX . . . REBUILD fails with an ORA-01578: ORACLE data block corrupted (file # 14, block # 50) error.

Full Access
Question # 55

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

1z0-062 question answer

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

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).

Full Access
Question # 56

You plan to implement the distributed database system in your company. You invoke Database Configuration Assistant (DBCA) to create a database on the server. During the installation, DBCA prompts you to specify the Global Database Name.

What must this name be made up of?

A.

It must be made up of a database name and a domain name.

B.

It must be made up of the value in ORACLE_SID and HOSTNAME.

C.

It must be made up of the value that you plan to assign for INSTANCE_NAME and HOSTNAME.

D.

It must be made up of the value that you plan to assign for ORACLE_SID and SERVICE_NAMES.

Full Access