netezza nzload similar function to isnumeric?

牧云@^-^@ 提交于 2019-12-31 02:58:07

问题


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 contain invalid characters.

How can i check to make sure that the data isnumeric in my import?

I saw try_cast for T-Sql but didn't see anything similar in netezza.


回答1:


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(<Column Name>, '^[+-]?[0-9]*[.]?[0-9]*$')

Otherwise you can use the translate function.

translate(<Column Name>,'0123456789','') in ('','.','-','-.')


来源:https://stackoverflow.com/questions/31546472/netezza-nzload-similar-function-to-isnumeric

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!