1. 程式人生 > >Kettle5.2 couldn't convert string [...] to a date using format [yyyy/MM/dd HH:mm:ss.SSS]

Kettle5.2 couldn't convert string [...] to a date using format [yyyy/MM/dd HH:mm:ss.SSS]

使用kettle出現

couldn't convert string [...] to a date using format [yyyy/MM/dd HH:mm:ss.SSS]

試了各種方法,最後發現是呼叫mysql函式 FROM_UNIXTIME()時指定格式化格式的問題, 原本是

FROM_UNIXTIME(create_time,"%Y-%m-%d %H:%i:%s")

修改為

FROM_UNIXTIME(create_time)