web analytics

Premium PassLeader 1Z0-062 Dumps with VCE and PDF Download (Question 97 – Question 108)

PassLeader now are offering 100% pass ensure 1Z0-062 dumps! All 1Z0-062 exam questions have been updated with correct answers, welcome to download the newest PassLeader 1Z0-062 VCE dumps and PDF dumps: http://www.passleader.com/1z0-062.html (210 Q&As –> 354 Q&As)

BTW: Download PassLeader 1Z0-062 dumps from Google Drive for free: https://drive.google.com/open?id=0B-ob6L_QjGLpZVhqd2dmaHZoZlE

QUESTION 97
Which three resources might be prioritized between competing pluggable databases when creating a multitenant container database plan (CDB plan) using Oracle Database Resource Manager?

A.    Maximum Undo per consumer group
B.    Maximum Idle time
C.    Parallel server limit
D.    CPU
E.    Exadata I/O
F.    Local file system I/O

Answer: ACD

QUESTION 98
You created an encrypted tablespace:
passleader-1z0-062-dumps-981
You then closed the encryption wallet because you were advised that this is secure. Later in the day, you attempt to create the EMPLOYEES table in the SECURESPACE tablespace with the SALT option on the EMPLOYEE column. Which is true about the result?

A.    It creates the table successfully but does not encrypt any inserted data in the EMPNAME column because the wallet must be opened to encrypt columns with SALT.
B.    It generates an error when creating the table because the wallet is closed.
C.    It creates the table successfully, and encrypts any inserted data in the EMPNAME column because the wallet needs to be open only for tablespace creation.
D.    It generates error when creating the table, because the salt option cannot be used with encrypted tablespaces.

Answer: C
Explanation:
* The environment setup for tablespace encryption is the same as that for transparent data encryption. Before attempting to create an encrypted tablespace, a wallet must be created to hold the encryption key.
* Setting the tablespace master encryption key is a one-time activity. This creates the master encryption key for tablespace encryption. This key is stored in an external security module (Oracle wallet) and is used to encrypt the tablespace encryption keys.
* Before you can create an encrypted tablespace, the Oracle wallet containing the tablespace master encryption key must be open. The wallet must also be open before you can access data in an encrypted tablespace.
* Salt is a way to strengthen the security of encrypted data. It is a random string added to the data before it is encrypted, causing repetition of text in the clear to appear different when encrypted. Salt removes the one common method attackers use to steal data, namely, matching patterns of encrypted text.
* ALT | NO SALT By default the database appends a random string, called “salt,” to the clear text of the column before encrypting it. This default behavior imposes some limitations on encrypted columns:
/ If you specify SALT during column encryption, then the database does not compress the data in the encrypted column even if you specify table compression for the table. However, the database does compress data in unencrypted columns and encrypted columns without the SALT parameter.

QUESTION 99
On your Oracle Database, you issue the following commands to create indexes:
SQL > CREATE INDEX oe.ord_customer_ix1 ON oe.orders (customer_id, sales_rep_id) INVISIBLE;
SQL> CREATE BITMAP INDEX oe.ord_customer_ix2 ON oe.orders (customer_id, sales_rep_id);
Which two statements are true?

A.    Only the ORD_CUSTOMER_IX1 index created.
B.    Both the indexes are updated when a row is inserted, updated, or deleted in the ORDERS table.
C.    Both the indexes are created: however, only ORD_CUSTOMERS_IX1 is used by the optimizer for queries on the ORDERS table.
D.    The ORD_CUSTOMER_IX1 index is not used by the optimizer even when the OPTIMIZER_USE_INVISIBLE_INDEXES parameters is set to true.
E.    Both the indexes are created and used by the optimizer for queries on the ORDERS table.
F.    Both the indexes are created: however, only ORD_CUSTOMERS_IX2 is used by the optimizer for queries on the ORDERS table.

Answer: BF
Explanation:
B: The invisible index ORD_CUSTOMERS_IX1 and the bitmap index are both updated by DML operations on the Orders table.
F: Since ORD_CUSTOMERS_IX1 is invisible only ORD_CUSTOMERS_IX2 is used by the query optimizer.
Not A: Both indexes are created fine.
Not C, Not D, Not E:
* ord_customer_ix1 is an invisible index and is therefore not used by the optimizer.
* VISIBLE | INVISIBLE Use this clause to specify whether the index is visible or invisible to the optimizer. An invisible index is maintained by DML operations, but it is not be used by the optimizer during queries unless you explicitly set the parameter OPTIMIZER_USE_INVISIBLE_INDEXES to TRUE at the session or system level.
Note:
Specify BITMAP to indicate that index is to be created with a bitmap for each distinct key, rather than indexing each row separately. Bitmap indexes store the rowids associated with a key value as a bitmap. Each bit in the bitmap corresponds to a possible rowid. If the bit is set, then it means that the row with the corresponding rowid contains the key value. The internal representation of bitmaps is best suited for applications with low levels of concurrent transactions, such as data warehousing.

QUESTION 100
Which two statements are true when row archival management is enabled?

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.

Answer: AB
Explanation:
A: Below we see a case where we set the row archival visibility parameter to “all” thereby allowing us to see all of the rows that have been logically deleted:
alter session set row archival visibility = all;
We can then turn-on row invisibility back on by changing row archival visibility = “active”: alter session set row archival visibility = all;
B: To use ora_archive_state as an alternative to deleting rows, you need the following settings and parameters:
1. Create the table with the row archival clause
create table mytab (col1 number, col2 char(200)) row archival;
2. Now that the table is marked as row archival, you have two methods for removing rows, a permanent solution with the standard delete DML, plus the new syntax where you set ora_archive_state to a non-zero value:
update mytab set ora_archive_state=2 where col2=’FRED’;
3. To make “invisible rows” visible again, you simply set the rows ora_archive_state to zero:
update mytab set ora_archive_state=0 where col2=’FRED’;
Note:
* Starting in Oracle 12c, Oracle provides a new feature that allow you to “logically delete” a row in a table without physically removing the row. This effectively makes deleted rows “invisible” to all SQL and DML, but they can be revealed at any time, providing a sort of “instant” rollback method.
To use ora_archive_state as an alternative to deleting rows.

QUESTION 101
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?

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.

Answer: BCE
Explanation:
Note:
* Oracle 12c now provides the ability to index a subset of partitions and to exclude the others.
Local and global indexes can now be created on a subset of the partitions of a table. Partial Global indexes provide more flexibility in index creation for partitioned tables. For example, index segments can be omitted for the most recent partitions to ensure maximum data ingest rates without impacting the overall data model and access for the partitioned object.
Partial Global Indexes save space and improve performance during loads and queries. This feature supports global indexes that include or index a certain subset of table partitions or subpartitions, and exclude the others. This operation is supported using a default table indexing property. When a table is created or altered, a default indexing property can be specified for the table or its partitions.

QUESTION 102
You use the segment advisor to help determine objects for which space may be reclaimed. Which three statements are true about the advisor given by the segment advisor?

A.    It may advise the use of online table redefinition for tables in dictionary managed tablespace.
B.    It may advise the use of segment shrink for tables in dictionary managed tablespaces it the no chained rows.
C.    It may advise the use of online table redefinition for tables in locally managed tablespaces.
D.    It will detect and advise about chained rows.
E.    It may advise the use of segment shrink for free list managed tables.

Answer: BCD
Explanation:
The Segment Advisor generates the following types of advice:
* If the Segment Advisor determines that an object has a significant amount of free space, it recommends online segment shrink. If the object is a table that is not eligible for shrinking, as in the case of a table in a tablespace without automatic segment space management, the Segment Advisor recommends online table redefinition (C).
* (D) If the Segment Advisor encounters a table with row chaining above a certain threshold, it records that fact that the table has an excess of chained rows.

QUESTION 103
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?

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.

Answer: AE
Explanation:
Unlike unusable indexes, an invisible index is maintained during DML statements.
Note:
* Oracle 11g allows indexes to be marked as invisible. Invisible indexes are maintained like any other index, but they are ignored by the optimizer unless the OPTIMIZER_USE_INVISIBLE_INDEXES parameter is set to TRUE at the instance or session level. Indexes can be created as invisible by using the INVISIBLE keyword, and their visibility can be toggled using the ALTER INDEX command.

QUESTION 104
In your multitenant container database (CDB) containing same pluggable databases (PDBs), you execute the following commands in the root container:
passleader-1z0-062-dumps-1041
Which two statements are true?

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.

Answer: AC
Explanation:
* You can include the CONTAINER clause in several SQL statements, such as the CREATE USER, ALTER USER, CREATE ROLE, GRANT, REVOKE, and ALTER SYSTEM statements.
* * CREATE ROLE with CONTAINER (optional) clause
/ CONTAINER = ALL
Creates a common role.
/ CONTAINER = CURRENT
Creates a local role in the current PDB.

QUESTION 105
The persistent configuration settings for RMAN have default for all parameters. Identify four RMAN commands that produce a multi-section backup.

A.    BACKUP TABLESPACE SYSTEM SECTION SIZE 100M;
B.    BACKUP AS COPY TABLESPACE SYSTEM SECTION SIZE 100M;
C.    BACKUP ARCHIVELOG ALL SECTION SIZE 25M;
D.    BACKUP TABLESPACE “TEMP” SECTION SIZE 10M;
E.    BACKUP TABLESPACE “UNDO” INCLUDE CURRENT CONTROLFILE SECTION SIZE 100M;
F.    BACKUP SPFILE SECTION SIZE 1M;
G.    BACKUP INCREMENTAL LEVEL 0 TABLESPACE SYSAUX SECTION SIZE 100M;

Answer: ABCG

QUESTION 106
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

Answer: C
Explanation:
Example (see step23):
Step 1:
Run the RMAN FLASHBACK DATABASE command.
You can specify the target time by using a form of the command shown in the following examples:
FLASHBACK DATABASE TO SCN 46963;
FLASHBACK DATABASE
TO RESTORE POINT BEFORE_CHANGES;
FLASHBACK DATABASE TO TIME
“TO_DATE(’09/20/05′,’MM/DD/YY’)”;
When the FLASHBACK DATABASE command completes, the database is left mounted and recovered to the specified target time.
Step 2:
Make the database available for updates by opening the database with the RESETLOGS option. If the database is currently open read-only, then execute the following commands in SQL*Plus:
SHUTDOWN IMMEDIATE
STARTUP MOUNT
ALTER DATABASE OPEN RESETLOGS;

QUESTION 107
Examine the commands executed to monitor database operations:
$> conn sys oracle/oracle@prod as sysdba
SQL > VAR eid NUMBER
SQL > EXEC: eid := DBMS_SQL_MONITOR.BEGIN_OPERATION (`batch_job’ ,
FORCED_TRACKING => `Y’);
Which two statements are true?

A.    Database operations will be monitored only when they consume a significant amount of resource.
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 DIAGNISTIC + 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.

Answer: CE
Explanation:
C: Setting the CONTROL_MANAGEMENT_PACK_ACCESS initialization parameter to DIAGNOSTIC+TUNING (default) enables monitoring of database operations. Real-Time SQL Monitoring is a feature of the Oracle Database Tuning Pack.
Note:
* The DBMS_SQL_MONITOR package provides information about Real-time SQL Monitoring and Real-time Database Operation Monitoring.
* (not B) BEGIN_OPERATION Function
starts a composite database operation in the current session.
/ (E) FORCE_TRACKING – forces the composite database operation to be tracked when the operation starts. You can also use the string variable ‘Y’.
/ (not A) NO_FORCE_TRACKING – the operation will be tracked only when it has consumed at least 5 seconds of CPU or I/O time. You can also use the string variable ‘N’.

QUESTION 108
Which three statements are true about the working of system privileges in a multitenant control database (CDB) that has pluggable databases (PDBs)?

A.    System privileges apply only to the PDB in which they are used.
B.    Local users cannot use local system privileges on the schema of a common user.
C.    The granter of system privileges must possess the set container privilege.
D.    Common users connected to a PDB can exercise privileges across other PDBs.
E.    System privileges with the with grant option container all clause must be granted to a common user before the common user can grant privileges to other users.

Answer: ACE
Explanation:
A, not D: In a CDB, PUBLIC is a common role. In a PDB, privileges granted locally to PUBLIC enable all local and common users to exercise these privileges in this PDB only.
C: A user can only perform common operations on a common role, for example, granting privileges commonly to the role, when the following criteria are met:
The user is a common user whose current container is root.
The user has the SET CONTAINER privilege granted commonly, which means that the privilege applies in all containers.
The user has privilege controlling the ability to perform the specified operation, and this privilege has been granted commonly.
Incorrect:
Note:
* Every privilege and role granted to Oracle-supplied users and roles is granted commonly except for system privileges granted to PUBLIC, which are granted locally.


PassLeader now are offering 100% pass ensure 1Z0-062 dumps! All 1Z0-062 exam questions have been updated with correct answers, welcome to download the newest PassLeader 1Z0-062 VCE dumps and PDF dumps: http://www.passleader.com/1z0-062.html (210 Q&As –> 354 Q&As)

BTW: Download PassLeader 1Z0-062 dumps from Google Drive for free: https://drive.google.com/open?id=0B-ob6L_QjGLpZVhqd2dmaHZoZlE