views:

59

answers:

1

It is a simple query, how to set-up fulltext search on xml column in SQL Server 2008.

+1  A: 
USE AdventureWorks
SELECT  AdditionalContactInfo FROM Person.Contact WHERE
FREETEXT (AdditionalContactInfo,' phone')