Which construct should you use?

You are a database developer on an instance of SQL Server 2008. Your database contains a DisciplinaryAction table created with the following statement:
CREATE TABLE DisciplinaryAction (
ActionID int,
EmpID int,
ReportingBy int,
ActionDate datetime,
ActionDetails varchar(4000),
CONSTRAINT PK_ActionID PRIMARY KEY CLUSTERED (ActionID)
);
You have created a full-text catalog and full-text index to enable full-text searches on the ActionDetails column.
You want to identify all employees who have a disciplinary action relating to attendance issues. You also want the results to be ranked according to their relevance.
Which construct should you use?
A. the CONTAINS predicate including the NEAR clause
B. the CONTAINSTABLE function including the FORMS OF INFLECTIONAL clause
C. the FREETEXT predicate
D. the FREETEXTTABLE function

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.