I have a simple one View:

Let me select the top 5 lines: (the view doesn't have it top 5- it's just for clarity here)
SELECT TOP 5 [CustomerId]
,[EngLastFirst]
,[EngFirstLast]
,[LocalLastFirst]
,[LocalFirstLast]
FROM [WebERP].[dbo].[View_CustomersNames]
Result:

Let me create a full text index (right click on View):

OK so now we also have catalog:
Right-click on catalog- to see the properties:

All properties default:

Click rebuildon catalog:

Great
Run a simple query CONTAINS:
SELECT * FROM View_CustomersNames vcn
where CONTAINS( vcn.*, '"aerSwy*"')
As you can see from the previous code, the record exists:

But returns no results
While likereturning results:
SELECT * FROM View_CustomersNames vcn
where vcn.engLAstFirst LIKE '%aerSwy%'

Question:
?
SELECT * FROM View_CustomersNames vcn
where CONTAINS( vcn.*, '"aerSwy*"')
NB - , - ( )
Edit
- . -
