web analytics

Upgrade to Oracle Database 12c 1Z0-060 Dumps With VCE and PDF Download (Question 31 – Question 40)

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

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

QUESTION 31
You upgrade your Oracle database in a multiprocessor environment. As a recommended you execute the following script:
SQL > @utlrp.sql
Which two actions does the script perform?

A.    Parallel compilation of only the stored PL/SQL code
B.    Sequential recompilation of only the stored PL/SQL code
C.    Parallel recompilation of any stored PL/SQL code
D.    Sequential recompilation of any stored PL/SQL code
E.    Parallel recompilation of Java code
F.    Sequential recompilation of Java code

Answer: CE
Explanation:
utlrp.sql and utlprp.sql
The utlrp.sql and utlprp.sql scripts are provided by Oracle to recompile all invalid objects in the database. They are typically run after major database changes such as upgrades or patches. They are located in the $ORACLE_HOME/rdbms/admin directory and provide a wrapper on the UTL_RECOMP package. The utlrp.sql script simply calls the utlprp.sql script with a command line parameter of “0”. The utlprp.sql accepts a single integer parameter that indicates the level of parallelism as follows.
0 – The level of parallelism is derived based on the CPU_COUNT parameter.
1 – The recompilation is run serially, one object at a time.
N – The recompilation is run in parallel with “N” number of threads.
Both scripts must be run as the SYS user, or another user with SYSDBA, to work correctly.

QUESTION 32
Which statement is true concerning dropping a pluggable database (PDB)?

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

Answer: C

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

A.    Missing or stale histogram statistics
B.    Undersized shared pool
C.    High clustering factor for the indexes
D.    High value for the DB_FILE_MULTIBLOCK_READ_COUNT parameter
E.    Oversized buffer cache

Answer: ACD
Explanation:
D:DB_FILE_MULTIBLOCK_READ_COUNT is one of the parameters you can use to minimize I/O during table scans. It specifies the maximum number of blocks read in one I/O operation during a sequential scan. The total number of I/Os needed to perform a full table scan depends on such factors as the size of the table, the multiblock read count, and whether parallel execution is being utilized for the operation.

QUESTION 34
Which three features work together, to allow a SQL statement to have different cursors for the same statement based on different selectivity ranges?

A.    Bind Variable Peeking
B.    SQL Plan Baselines
C.    Adaptive Cursor Sharing
D.    Bind variable used in a SQL statement
E.    Literals in aSQL statement

Answer: ACE
Explanation:
* In bind variable peeking (also known as bind peeking), the optimizer looks at the value in a bind variable when the database performs a hard parse of a statement.
When a query uses literals, the optimizer can use the literal values to find the best plan. However, when a query uses bind variables, the optimizer must select the best plan without the presence of literals in the SQL text. This task can be extremely difficult. By peeking at bind values the optimizer can determine the selectivity of a WHERE clause condition as if literals had been used, thereby improving the plan.
C: Oracle 11g/12guses Adaptive Cursor Sharing to solve this problem by allowing the server to compare the effectiveness of execution plans between executions with different bind variable values. If it notices suboptimal plans, it allows certain bind variable values, or ranges of values, to use alternate execution plans for the same statement. This functionality requires no additional configuration.

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

Answer: B
Explanation:
The awrddrpt.sql report is the Automated Workload Repository Compare Period Report. The awrddrpt.sql script is located in the $ORACLE_HOME/rdbms/admin directory.
Incorrect:
Not A: Compare Period ADDM
Use this report to perform a high-level comparison of one workload replay to its capture or to another replay of the same capture. Only workload replays that contain at least 5 minutes of database time can be compared using this report.

QUESTION 36
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.

A.    3, 2, 1, 4
B.    2, 3, 4, 1
C.    4, 1, 3, 2
D.    3, 2, 4, 1

Answer: B

QUESTION 37
Which three statements are true about Automatic Workload Repository (AWR)?

A.    All AWR tables belong to the SYSTEM schema.
B.    The AWR data is stored in memory and in the database.
C.    The snapshots collected by AWR are used by the self-tuning components in the database
D.    AWR computes time model statistics based on time usage for activities, which are displayed in the v$SYS time model and V$SESS_TIME_MODEL views.
E.    AWR contains systemwide tracing and logging information.

Answer: BCD
Explanation:
The statistics collected and processed by AWR include: Time model statistics based on time usage for activities, displayed in the V$SYS_TIME_MODEL and V$SESS_TIME_MODEL views
http://docs.oracle.com/cd/B28359_01/server.111/b28274/autostat.htm
http://docs.oracle.com/cd/E11882_01/server.112/e41573/autostat.htm#PFGRF02601

QUESTION 38
You upgraded your database from pre-12c to a multitenant container database (CDB) containing pluggable databases (PDBs). Examine the query and its output:
passleader-1Z0-060-dumps-381
Which two tasks must you perform to add users with SYSBACKUP, SYSDG, and SYSKM privilege to the password file?

A.    Assign the appropriate operating system groups to SYSBACKUP, SYSDG, SYSKM.
B.    Grant SYSBACKUP, SYSDG, and SYSKM privileges to the intended users.
C.    Re-create the password file with SYSBACKUP, SYSDG, and SYSKM privilege and the FORCE argument set to Yes.
D.    Re-create the password file with SYSBACKUP, SYSDG, and SYSKM privilege, and FORCE arguments set to Yes.
E.    Re-create the password file in the Oracle Database 12c format.

Answer: BD

QUESTION 39
An application accesses a small lookup table frequently. You notice that the required data blocks are getting aged out of the default buffer cache. How would you guarantee that the blocks for the table never age out?

A.    Configure the KEEP buffer pool and alter the table with the corresponding storage clause.
B.    Increase the database buffer cache size.
C.    Configure the RECYCLE bufferpool and alter the table with the corresponding storage clause.
D.    Configure Automata Shared Memory Management.
E.    Configure Automatic Memory Management.

Answer: A
Explanation:
Schema objects are referenced with varying usage patterns; therefore, their cache behavior may be quite different. Multiple buffer pools enable you to address these differences. You can use a KEEP buffer pool to maintain objects in the buffer cache and a RECYCLE buffer pool to prevent objects from consuming unnecessary space in the cache. When an object is allocated to a cache, all blocks from that object are placed in that cache. Oracle maintains a DEFAULT buffer pool for objects that have not been assigned to one of the buffer pools.

QUESTION 40
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.

Answer: B


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

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