Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Administration
 Full text search error

Author  Topic 

sparrow37
Posting Yak Master

148 Posts

Posted - 2011-05-14 : 12:39:41
Hi all:

I am getting following error in my SQL server 2008 R2 database:

Cannot use a CONTAINS or FREETEXT predicate on table or indexed view 'tblArmy' because it is not full-text indexed.
Please suggest solution.

Thanks.

robvolk
Most Valuable Yak

15732 Posts

Posted - 2011-05-14 : 13:31:23
You'll need to...wait for it...create a full-text index on the columns of that table.

The syntax is described here: http://msdn.microsoft.com/en-us/library/ms187317.aspx
Go to Top of Page
   

- Advertisement -