Which two types of column filtering may benefit from partition pruning?
A. Equally operates on range-partitioned tables.
B. In-list operators on system-partitioned tables
C. Equality operators on system-partitioned tables
D. Operators on range-partitioned tables
E. Greater than operators on hash-partitioned tables
Examine the Exhibit.
Which two options are true about the execution plan and the set of statements?
A. The query uses a partial partition-wise join.
B. The degree of parallelism is limited to the number of partitions in the EMP_RANGE_DID table.
C. The DEPT table id dynamically distributed based on the partition keys of the EMP_RANGE_DID table.
D. The server process serially scans the entire DEPT table for each range partition on the EMP_RANGE_DID table.
E. The query uses a full partition-wise join.
You are administering a database that supports an OLTP application. To set statistics preferences, you issued the following command:
SQL > DBMS_STATS.SET_GLOBAL_PREFS (`ESTIMATE_PERCENT', `9');
What will be the effect of executing this procedure?
A. It will influence the gathering of statistics for a table based on the value specified for ESTIMATE_PERCENT provided on table preferences for the same table exist.
B. It will influence dynamic sampling for a query to estimate the statistics based on ESTIMATE_PERCENT.
C. The automatic statistics gathering job running in the maintenance window will use global preferences unless table preferences for the same table exist.
D. New objects created will use global preference even if table preferences are specified.
Examine the exhibit.
Which is true based on the information obtainable from the execution plan?
A. A full partition-wise join performed between the EMPLOYEES and DEPARTMENTS tables.
B. A full table scan on the DEPARTMENTS table performed serially by the query coordinator.
C. A full table scan on the DEPARTMENTS table is performed serially by a single parallel execution server process.
D. A partial partition-wise join performed between the EMPLOYEES and DEPARTMENTS tables.
E. A full table scan on the EMPLOYEES table is done in parallel.
Which three are tasks performed in the hard parse stage of a SQL statement executions?
A. Semantics of the SQL statement are checked.
B. The library cache is checked to find whether an existing statement has the same hash value.
C. The syntax of the SQL statement is checked.
D. Information about location, size, and data type is defined, which is required to store fetched values in variables.
E. Locks are acquired on the required objects.
You notice some performance degradation for a high-load SQL statement in your database. After investigations, you run the SQL Tuning Advisor, which recommends a SQL Profile. You accept the profile recommendation resulting in a new, tuned execution plan for the statement.
Your database uses SQL plan management and a SQL plan baseline exists for this SQL statement.
Which statement is true?
A. The database adds the tuned plan to the SQL plan baseline as a nonfixed plan.
B. The database adds the tuned plan to the SQL plan baseline as a fixed plan.
C. The optimizer uses the new tuned plan only when a reproducible fixed plan is present.
D. The created SQL profile will continuously adapt to all changes made to the database, the object, and to the system statistics over an extended length of time.
You plan to bulk load data using INSERT /*+PARALLEL*/ INTO . . . . SELECT FROM statements.
Which four types of operations can execute in parallel on tables that have no bitmapped indexes or materialized views defined on term?
A. Direct path insert of a million rows into a partitioned, index-organized table containing one million rows.
B. Direct path insert of a million rows into a partitioned, index-organized table containing 10 million rows.
C. Direct path insert of a million rows into a nonpartitioned, index-organized table containing one million rows.
D. Direct path insert of a million rows into a nonpartitioned, heap-organized table containing 10 million rows.
E. Direct path insert of a million rows into a nonpartitioned, heap-organized table containing one million rows.
In your database, the CURSOR_SHARING parameter is set to FORCE.
A user issues the following SQL statement: Select * from SH.CUSTOMERS where REIGN='NORTH' Which two statements are correct?
A. The literal value `NORTH' is replaced by a system-generated bind variable.
B. Bind peeking will not happen and subsequent executions of the statement with different literal values will use the same plan.
C. Adaptive cursor sharing happens only if there is a histogram in the REIGN column of the CUSTOMERS table.
D. Adaptive cursor sharing happens irrespective of whether there is a histogram in the REIGN column of the CUSTOMERS table.
You are administering a database that supports a DSS workload, where in an application a set of queries use the query rewrite on materialized views. You notice that these queries are performing poorly.
Which two actions can you make to improve the performance of theses queries?
A. Use DBMS_MVIEW.EXPLAIN_REWRITE to analyze whether the queries are rewritten.
B. USE DBMS_ADVISOR.QUICK_TUNE to analyze the query rewrite usage of materialized views for the entire workload.
C. Create an STS for all the queries and use SQL performance Analyzer to generate recommendations for determining the regressed SQL statements.
D. Create an STS for all the queries in the application and use the SQL Tuning Advisor to generate recommendations.
E. Create an STS for all the queries in the application and use the SQL Access Advisor to generate a recommendation for optimizing materialized views for maximum query rewrite usage and fast refresh.
Which two statements are true about the use of the DYNAMIC_SAMPLING hint in a query?
A. It estimates selectivity better for the filters.
B. It is always used for flashback queries that contain the AS OF clause.
C. It cannot be used if there is a single-table predicate in the WHERE clause.
D. It cannot be used for processing SQL statements in parallel.
E. It can compensate for the lack of extended statistics to get accurate cardinality estimates for complex predicate expressions.