Which action should you take?

You are a database developer on an instance of SQL Server 2008. You have an EventMaster table defined using the following statement:
CREATE TABLE EventMaster (
EventID int PRIMARY KEY,
EventDesc varchar(50) NOT NULL,
Provider varchar(30),
EventDate datetime,
Cost money,
MaxSeats int);
You currently have a clustered index on the table’s primary key, and a nonclustered index on the Provider column.
Rows are frequently added to the EventMaster table as new events are scheduled. Your booking representatives frequently query the EventMaster table to return the event description and cost of events provided by specific providers within a given time range. You want to optimize query performance.
Which action should you take?
A. Modify the nonclustered index to include EventDate.
B. Create a filtered index on Provider and EventDate.
C. Create an indexed view on EventMaster.
D. Create a clustered index on EventDesc.

microsoft-exams

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.