Hi all,
can anyone explain me why there are search-settings on a Attribute View?
I tried to do a fuzzy search on a Column Store table via ...WHERE
CONTAINS(*, 'SEARCHTERM', FUZZY(0.8))..., and it returns me the corresponding lines.
Then I created an Attribute View using the same table and disabled the search-functionality on the output-parameters and tried the same statement for the AT-View. I expected to get no results but got the same results as before. Why are there search-settings on the AT-View?
SELECT SCORE() AS score, *
FROM "_SYS_BIC"."tmp.knobel/AT_VIEW"
WHERE CONTAINS(*, 'SEARCHTERM', FUZZY(0.8))
ORDER BY score DESC;
Hope to find the answer here :-S
Cheers, Stefan