I have data from a flat file that I am loading into netezza via nzload
.
Some of the field types are numeric however, the data received can sometimes conta
Netezza doesn't have an equivalent to try-cast
, you can however test if the value is numeric a few different ways. If you have the SQL Extensions Toolkit
installed you can use a regex function.
sql_functions.admin.regexp_like(, '^[+-]?[0-9]*[.]?[0-9]*$')
Otherwise you can use the translate
function.
translate(,'0123456789','') in ('','.','-','-.')