Create a view based on concatenated value of all the columns and run the search on that view instead of the table.
debasisdas
Posting Genius
6,872 posts since Feb 2007
Reputation Points: 666
Solved Threads: 434
try to create a view like this
create view view_name as select col || col2 || col3 as concat_column from table_name
and run the search on the concat_column of view_name.
debasisdas
Posting Genius
6,872 posts since Feb 2007
Reputation Points: 666
Solved Threads: 434