Examine the SQL statements that creates ORDERS table: CREATE TABLE orders (SER_NO NUMBER UNIQUE, ORDER_ID NUMBER, ORDER_DATE DATE NOT NULL STATUS VARCHARD2(10) CHECK (status IN ('CREDIT','CASH')), PROD_ID_NUMBER REFERENCES PRODUCTS(PRODUCT_ID), ORD_TOTAL NUMBER, PRIMARY KEY (order id, order date)); For which columns would an index be automatically created when you execute the aboveSQL statement? ()
第1题:
Which three statements about performance analysis by SQL Performance Analyzer are true? ()
第2题:
Which statement correctly describes SQL and /SQL*Plus?()
第3题:
Which two statements are true regarding the SQL Repair Advisor?()
第4题:
You are maintaining the PROD database of NetFx Corporation. You set the value of the SQL_TRACE parameter to TRUE. What will be the impact of this setting?()
第5题:
Which is the source used by Automatic SQL Tuning that runs as part of the AUTOTASK framework?()
第6题:
Which component does the SQL Tuning Advisor NOT analyze for the SQL statements?()
第7题:
Access path analysis is not performed for the SQL statements.
SQL structure analysis is not performed for the SQL statements.
SQL Profile recommendations are not generated for the SQL statements.
The staleness and absence of the statistics are not checked for the objects in the query supplied to the SQL Tuning Advisor.
第8题:
A list of SQL statements and recommendations for tuning
A list of SQL statements that have been tuned by the Advisor, with before and after metrics
Graphs showing the actual performance improvement made by the Advisor after it implemented the recommended changes
All of the above
第9题:
Database operations will be monitored only when they consume a significant amount of resource.
Database operations for all sessions will be monitored.
Database operations will be monitored only if the STATISTICS_LEVEL parameter is set to TYPICAL and CONTROL_MANAGEMENT_PACK_ACCESS is set DIAGNISTIC + tuning.
Only DML and DDL statements will be monitored for the session.
All subsequent statements in the session will be treated as one database operation and will be monitored.
第10题:
Both SQL and /SQL*plus allow manipulation of values in the database.
/SQL* Plus recognizes SQL satement and sends them to the server; SQL is the Oracle proprietary interface for executing SQL statements.
/SQL* Plus language for communicating with the Oracle server to access data; SQL recognizes SQL statements and sends them to the server.
/SQL manipulates data and table definition in the database; /SQL* Plus does not allow manipulation of values in the database.
第11题:
SQL statements that are part of the AWR baseline only
SQL statements based on the AWR top SQL identification
SQL statements that are part of the available SQL Tuning Set (STS) only
SQL statements that are available in the cursor cache and executed by a user other than SYS
第12题:
The SQL trace facility will generate the performance statistics for all the SQL statements for an instance and write them in the USER_DUMP_DEST directory.
The SQL trace facility will generate the performance statistics for all the SQL statements for a session and write them in the USER_DUMP_DEST directory.
The SQL trace facility will generate the performance statistics for all the SQL statements for an instance and write them in the BACKGROUND_DUMP_DEST directory.
The SQL trace facility will generate the performance statistics for all the SQL statements for a session and write them in the BACKGROUND_DUMP_DEST directory.
第13题:
Which of these appropriately describes the results of a manual SQL Tuning Advisor task?()
第14题:
Which of these appropriately describes the results of a manual SQL Tuning Advisor task?()
第15题:
Examine the contents of SQL loader control file: Which three statements are true regarding the SQL* Loader operation performed using the control file?()
第16题:
What happens when you run the SQL Tuning Advisor with limited scope?()
第17题:
What happens when you run the SQL Tuning Advisor with limited scope?()
第18题:
Examine the following statement that is used to modify the constraint on the SALES table: SQL> ALTER TABLE SALES MODIFY CONSTRAINT pk DISABLE VALIDATE; Which three statements are true regarding the above command()
第19题:
The constraint remains valid.
The index on the constraint is dropped.
It allows the loading of data into the table using SQL *Loader.
New data conforms to the constraint, but existing data is not checked.
It allows the data manipulation on the table using INSERT/UPDATE/DELETE SQL statements.
第20题:
The constraint remains valid.
The index on the constraint is dropped.
It allows the loading of data into the table using SQL*Loader.
New data conforms to the constraint, but existing data is not checked
It allows the data manipulation on the table using INSERT/UPDATE/DELETE SQL statements.
第21题:
SQL statements that are part of the AWR baseline only
SQL statements based on the AWR top SQL identification
SQL statements that are part of the available SQL Tuning Set (STS) only
SQL statements that are available in the cursor cache and executed by a user other than SYS
第22题:
Access path analysis is not performed for SQL statements.
SQL structure analysis is not performed for SQL statements.
SQL Profile recommendations are not generated for SQL statements.
Staleness and absence of statistics are not checked for the objects in the SQL Tuning Advisor.
第23题:
Access path analysis is not performed for SQL statements.
SQL structure analysis is not performed for SQL statements.
SQL Profile recommendations are not generated for SQL statements.
Staleness and absence of statistics are not checked for the objects in the SQL Tuning Advisor. In this case, SQL Tuning Advisor produces recommendations based on statistical checks, access path analysis, and SQL structure analysis. SQL profile recommendations are not generated.
第24题:
SER_NO
ORDER_ID
STATUS
PROD_ID
ORD_TOTAL
Composite index on ORDER_ID and ORDER_DATE