无法将字符串类型转换为日期类型。

huangapple go评论44阅读模式
英文:

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,&#39;YYYYMMDD&#39;),TO_DATE(INVC_DT,&#39;YYYYMMDD&#39;),null)

This will ensure there will be no failure.

huangapple
  • 本文由 发表于 2023年7月18日 08:33:17
  • 转载请务必保留本文链接:https://go.coder-hub.com/76708855.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定