Is there a way to query a table for a given value in all of it's column values in Netezza. Scenario is to make sure no invalid characters should be seen in our entire table.
Ascii values to be ignored are
($i < 32 ) Or ( $i > 32 && $i < 45 )
Or ( $i >= 58 && $i < 65 )
or ( $i > 90 && $i < 122 ) || ( $i > 122 )
Able to get the result using Unix script , but it's taking nearly 30 mins to scan 64 columns, 61000 records.
Better Netezza Sql approach is recommended.