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
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 FullText index blocking word contains with (S)

Author  Topic 

krishnan_mca02
Starting Member

1 Post

Posted - 2014-07-28 : 06:51:10
Hi,

My table column have "school(s)" value.

I have created full text index for this table.

And executing the below query first query not returning any records and second query returning records.

select * from TABLENAME WHERE CONTAINS(ColumName, '"school(S)"')
select * from TABLENAME WHERE CONTAINS(ColumName, '"school(s)"')

Difference between both query is (S) (S - Upper and Lower case).

Thanks in advance
   

- Advertisement -