select top 10 * from table where contains(*,'"abc*"')
works and returns 6 rows
abcdef
abcd
abcd
abcde
ABCDEFGH
ABCDEFG
select top 10 * from table where contains(*,'"*bc*"')
returns no records found.
Does anyone know how I can get the '"*bc*"' function to work ?