I want to use contains keyword for one table
select columnname from mytable where contains(columnname, 'columntext')
this is giving an error as
ERROR: Cannot use a
CONTAINSorFREETEXTpredicate on table or
indexed view ‘tblmembers’ because it is not full-text indexed.
what would be the error in this?
you need to read these before using the contains to allow free text searching:
http://msdn.microsoft.com/en-us/library/ms189520.aspx and
http://msdn.microsoft.com/en-us/library/bb326035.aspx