I need to fetch all records which contain .
At the moment I use this SQL:
select * from dbo.mytable
where CONTAINS(Location, '.')
but I receive this error:
Cannot use a CONTAINS or FREETEXT predicate on table or indexed view it is not full-text indexed.
I cannot set column full text indexed as I do not have high privilege.
Any idea how to circumnavigate this problem?