I originally posted this question here:http://forums.asp.net/p/1340070/2710527.aspx#2710527Hi,I've created a fulltext search on an xml column on  the following:table name: tbl_manualscolumn [xml] name: xmlcontentAs follows:/* Enable full text search */sp_fulltext_database  'enable'go/* Create catalog [table name]_Cat */sp_fulltext_catalog 'tbl_manuals_Cat', 'create'go/* make sure PK key is exactly whats under the Keys folder */sp_fulltext_table  'tbl_manuals',  'create',        'tbl_manuals_Cat', 'PK_tbl_manuals'go/* Choose column to index */sp_fulltext_column  'tbl_manuals', 'xmlcontent',  'add'go/* Activate table */sp_fulltext_table  'tbl_manuals',  'activate'go/* Index your catalog */sp_fulltext_catalog  'tbl_manuals_Cat', 'start_full'
Everything gets created, but when I run the following sql, I get an empty set returned:SELECT * FROM tbl_manuals WHERE FREETEXT(xmlcontent, 'Destroy')
The word "Destroy" is in the xml content. I am not sure if I missed anything when I created the fulltext search.Any thoughts?Thanks