Which three actions should you take?

You are a database developer on an instance of SQL Server 2008. You maintain a table, named EventDetails, containing information on scheduled events defined as follows:
CREATE TABLE EventDetails (
EventID int IDENTITY(1,1),
EventName varchar(50),
Description varchar(400),
FacilitatorID int,
EventDt datetime,
CONSTRAINT PK_EventID PRIMARY KEY CLUSTERED (EventID)
);
You execute the following Transact-SQL statement:
CREATE FULLTEXT CATALOG EventFTCatalog AS DEFAULT;
CREATE FULLTEXT INDEX ON dbo.EventDetails (Description) KEY INDEX PK_EventID ON EventFTCatalog WITH CHANGE_TRACKING AUTO;
You want to display the names of all events in the EventDetails table that have a description containing either the word introductory or a word with the same meaning as introductory.
Which three actions should you take? (Choose three. Each correct answer represents part of the solution.)
A. Create a query that uses the LIKE operator.
B. Modify the thesaurus file to include all words with the same meaning as introductory.
C. Rebuild the full-text index on the EventDetails table.
D. Enable full-text support for the database.
E. Create a query that uses the CONTAINS predicate with the FORMS OF THESAURUS clause.
F. Reload the thesaurus file using the sys.sp_fulltext_load_thesaurus_file system stored procedure.
G. Create a query that uses the CONTAINSTABLE function with the ISABOUT clause.

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.