INDEX_STATS
DBA_INDEXES
DBA_IND_COLUMNS
V$OBJECT_USAGE
第1题:
An index called ORD_CUSTNAME_IX has been created on the CUSTNAME column in the ORDERS table using the following command: SQL>CREATE INDEX ord_custname_ix ON orders(custname); The ORDERS table is frequently queried using the CUSTNAME column in the WHERE clause. You want to check the impact on the performance of the queries if the index is not available. You do not want the index to be dropped or rebuilt to perform this test. Which is the most efficient method of performing this task?()
第2题:
You executed the following procedure to collect statistics regarding an index: SQL>ANALYZE INDEX EMP_ID VALIDATE STRUCTURE; Which view will you use to determine whether you need to rebuild the index or not?()
第3题:
You issued the following statement to monitor the usage of the index: SQL> ALTER INDEX SCOTT.EMP_IDX MONITORING USAGE; Which view will you query to ensure that the index is being monitored?()
第4题:
You manage a SQL Server 2005 database that contains a table with many indexes. You notice that data modification performance has degraded over time. You suspect that some of the indexes are unused. You need to identify which indexes were not used by any queries since the last time SQL Server 2005 started. Which dynamic management view should you use?()
第5题:
During a query’s parse time only.
During a query’s execution time only.
During any kind of DML statement execution.
During the execution of an INSERT statement only.
第6题:
It is ignored by the query optimizer.
It is not used while the index is being rebuilt.
The index cannot be rebuilt, and has to be re-created.
The index is automatically rebuilt when used the next time
第7题:
Html.ActionLink(Home, Index, Home)
Html.ActionLink(Home, Index, Home, new {area = }, null)
Html.ActionLink(Home, Index, Home, new {area = Blog}, null)
Html.ActionLink(Home, Index, Home, new {area = Home}, null)
第8题:
Rebuild the index.
Coalesce the index.
Drop and re-create the index in the new tablespace.
Relocate the index using the ALTER INDEX...MOVE statement.
第9题:
Index-organized table
Mapping Table
Clustered Table
Journal Table
第10题:
ALTER TABLE employees monitor index employee_idx_fk;
ALTER INDEX employee_idx_fk monitoring on;
ALTER TABLE employees monitor all indexes;
ALTER INDEX employee_idx_fk monitoring usage;
第11题:
disabling the index
making the index invisible
making the index unusable
using the MONITORING USAGE clause for the index
第12题:
INDEX_STATS
DBA_INDEXES
DBA_IND_COLUMNS
V$OBJECT_USAGE
第13题:
You have many users complaining about slow inserts into a large table. While investigating the reason, you find that the number of indexes on the table is high. You want to find out which indexes are not being used. Which method would you follow to achieve this?()
第14题:
The EMPLOYEES table has six indexes and DML operations are slow. Which command begins monitoring the EMPLOYEE_IDX_FK index to determine whether it has been used by an execution plan?()
第15题:
You are a professional level SQL Server 2005 database administrator in an international corporation named Wiikigo. You are experienced in implementing high-availability solutions, monitoring the database server, and design deployment. In the company, you major job is the deployment, maintenance and support of Microsoft SQL Server 2005.You work as a database administrator for your company. You find a problem that when the following query is executed, a SQL Server 2005 application will perform slowly. SELECT * FROM Orders WHERE OrderStatus = ’InProgress’ This query is executed by the application as an ad hoc query. In most occasions, this query performs much more quickly. The company has the OrderStatus column indexed. The value InProgress is included by only a small number of the rows. Nevertheless, the OrderStatus column index which is the most ideal for this query is not being utilized. The performance of this query should be enhanced. However, the application that executes the query should not be changed. In addition, the effect on end users should be cut to the least. Which action should be performed to finish the task?()
第16题:
You are developing an ASP.NET MVC 2 Web application. The application contains a controller named HomeController, which has an action named Index. The application also contains a separate area named Blog. A view within the Blog area must contain an ActionLink that will link to the Index action of the HomeController. You need to ensure that the ActionLink in the Blog area links to the Index action of the HomeController. Which ActionLink should you use?()
第17题:
To finish the task, the index should be built by utilizing a FILLFACTOR of 10 percent.
To finish the task, the index should be recreated to have all of the columns in the table included.
To finish the task, an indexed view of the Orders table should be viewed.
To finish the task, the statistics should be updated on the index.
第18题:
disabling the index
making the index invisible
making the index unusable
using the MONITORING USAGE clause for the index
第19题:
The PRIMARY KEY is created along with a new index.
The PRIMARY KEY is created and it would use an existing unique index.
The PRIMARY KEY would be created in a disabled state because it is using an existing index.
The statement produces an error because the USING clause is permitted only in the CREATE TABLE command.
第20题:
enable index monitoring and query the DBA_OBJECTS view
enable index monitoring and query the DBA_INDEXES view
enable index monitoring and query the V$OBJECT_USAGE view
enable index monitoring and view the DBA_INDEXTYPE_COMMENTS view
第21题:
sys.dm fts index population
sys.dm exec query stats
sys. dm db index usage stats
sys.dm db index physical stats
第22题:
The index can be changed from NOLOGGING to LOGGING
The index cannot be recovered even in the ARCHIVELOG mode.
The index can only be created if the base table is created with the NOLOGGING option.
The index can be recovered if you perform a backup after the CREATE INDEX statement.
第23题:
SER_NO
ORDER_ID
STATUS
PROD_ID
ORD_TOTAL
Composite index on ORDER_ID and ORDER_DATE