Hi,
when i m searching with contains I want to ignore a character inside the
keyword,
Like
Es(ignore next char)ref
--> Es?ef
will return the results Esxef , EsHef Estef Eskef also
thanks for your help from now.

Signature
Esref DURNA
Hilary Cotter - 27 Jan 2005 17:33 GMT
SQL FTS does not support this.
Try something like this using like
select * from TableName where like '% Es_ef %'

Signature
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
> Hi,
> when i m searching with contains I want to ignore a character inside the
[quoted text clipped - 6 lines]
>
> thanks for your help from now.