I created a full-text index on a text column and subsequent contains queries return results that don't include the search term. An example query is:
SELECT TOP 10 serial_no,writer_id,myField,assignment_type,subdate,title
FROM writing WHERE contains(myField,'"take it once"');