We would like to have a more "fuzzy" approach:
Example, if we enter
Travel Sky
RapidInsight
Wal mart
The database should be able to retrieve the following:
TravelSky Technology
Rapid Insight
Wal-mart
This is how google works.
I have tried a lot with my own logics like regex
etc.. But worked nothing.
currently in our application we are searching based on exact maching....but now we wan it more fuzzy lets say if i have some full company name in my database
For ex.
TravelSky Technology
then if i search 'travel sky' then it should return TravelSky and so on. currently we are having exact maching.
let me know if more examples required.
I found CONTAINS in oracle 10g which oracle doc mentioned that perform this kind of search. still i am trying it..