The syntax of the string representation of a datetime value is incorrect. SQLSTATE=22007

时间的转化

在datastage中总是遇到这样的一种错误

DB2_Connector_20,0: SQLExecute reported: SQLSTATE = 22007: Native Error Code = -180: Msg = [IBM][CLI Driver][DB2/AIX64] SQL0180N  The syntax of the string representation of a datetime value is incorrect.  SQLSTATE=22007
SQLExecute reported: SQLSTATE = 22007: Native Error Code = -180: Msg = [IBM][CLI Driver][DB2/AIX64] SQL0180N  The syntax of the string representation of a datetime value is incorrect.  SQLSTATE=22007

原因是我在transformer中将用函数stringtodate将Varche型的8为字符串转化为date型,但是在插入到表中的时候,报错,去掉该字段,其他字段正常插入,我很奇怪,因为昨天我还做过同样的操作却没有任何问题,我就猜想是数据的问题

当我用sql



INSERT INTO IFS_CORLOAN(corid,acctno,NEXTREPYDATE )
SELECT 1,1, date(to_date(nextrepydate,'YYYY-MM-DD'))  FROM ifsi_con_dkzh FETCH FIRST 1 rows only

插入数据库时,正常

后来发现原因果然处在数据上,原来我的数据中有00000000这样的字符串,他是不能转化为date型的,你可以用这样的sql试下

VALUES  date(to_date('00000001','YYYY-MM-DD'))

他是会报错的

VALUES  date(to_date('20140404','YYYY-MM-DD'))

却不会

你可能感兴趣的:(datastage,Sql)