英文:
Cannot convert type string to date
问题
我有一个扁平文件,其中日期以2023062的形式出现,我正在使用转换substr(LTRIM(RTRIM(LINE)),76,8)将其获取为名为INVC_DT的变量,并创建了表达式TO_DATE(INVC_DT,'YYYYMMDD')的输出列o_INVC_DT。当我运行工作流时,它给我错误消息
> "转换评估错误 [<<表达式错误>> [TO_DATE]: 无效的字符串转换为日期
... t:TO_DATE(s:'',s:'YYYYMMDD')]" 和 "转换 [REC_TRAN] 评估输出列[o_INVC_DT]时发生错误。错误消息是[<<表达式错误>> [TO_DATE]: 无效的字符串转换为日期
... t:TO_DATE(s:'',s:'YYYYMMDD')]"。
我尝试过将输出表达式更改为TO_DATE(INVC_DT,'MMYYYYDD'),但仍然不起作用。
英文:
I have a flat file with date coming in as 2023062 which I am using the conversion substr(LTRIM(RTRIM(LINE)),76,8) to get it as a variable named INVC_DT, and i created output column as o_INVC_DT with the expression TO_DATE(INVC_DT,'YYYYMMDD'). When I run the workflow, it gives me the error messages
> "Transformation Evaluation Error [<<Expression Error>> [TO_DATE]: invalid string for converting to Date
... t:TO_DATE(s:'',s:'YYYYMMDD')]" and "Transformation [REC_TRAN] had an error evaluating output column [o_INVC_DT]. Error message is [<<Expression Error>> [TO_DATE]: invalid string for converting to Date
... t:TO_DATE(s:'',s:'YYYYMMDD')].".
I have tried to change the output expression to TO_DATE(INVC_DT,'MMYYYYDD'), but it still did not work.
答案1
得分: 0
为什么不先检查然后再转换?
IS_DATE()
- 这将检查您的数据是否符合所提到的日期格式。
iif(IS_DATE(INVC_DT,'YYYYMMDD'),TO_DATE(INVC_DT,'YYYYMMDD'),null)
这将确保不会出现失败。
英文:
Why dont you check first and then convert?
IS_DATE()
- this will check if your data is a date in the mentioned format or not.
iif(IS_DATE(INVC_DT,'YYYYMMDD'),TO_DATE(INVC_DT,'YYYYMMDD'),null)
This will ensure there will be no failure.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论