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 Programming
 Full text search issue in stored procedure

Author  Topic 

sparrow37
Posting Yak Master

148 Posts

Posted - 2011-07-01 : 15:01:37
have a view with full index on fullname. when i run

SELECT * FROM vwPersonSearch

it returns rows

when I run:

SELECT * FROM vwPersonSearch WHERE [Full name] ='Mark RUSH')

It returns one row

when I run:

SELECT * FROM vwPersonSearch WHERE contains([Full name],'"Mark*" AND "RUSH*"')

It doesn't return any row. Why so ?
   

- Advertisement -