I'm using SQL Server 7.0
I'm searching for a variable string [strSearch] on field description on a
table.
The sql statement used is:
select description from table where description like '%' + strSearch + '%'
My question is:
Does anyone know how to speed up this search on the database side.?
Please any suggestion is appreciated.