Archive for June, 2017
Datastage : DB2 Lookup Stage : SAX parser exception thrown: The input ended before all started tags were ended
by Frederick Tybalt on Jun.30, 2017, under Error and Issues
Error :
Unrecognized argument: variant=’9.1\’,
library=ccdb2,
version=1.0,
variantlist=\’V1;9.1::ccdb2\’,
versionlist=\’1.0\’,
name=DB2Connector
}’
SAX parser exception thrown: The input ended before all started tags were ended. Last tag started was ‘before’ (CC_PropertySet::fatalError, file CC_PropertySet.cpp, line 2,236)
Resolution:
There are lot of references in google that the similar kind of error occurred in the XML stage and it it XML stage related error. But in my case this occurred in the DB2 lookup stage. After serval analysis, I found that, there was a environment variable defined for the table name and during the migration the environment variable was not added in the job parameter.
example :
SELECT COL1, COL2 FROM #$SrcTbl#
$SrcTbl was missing in the job parameter list.
This looks to weird since if this was in DB2 source or target stage, the error will be table not found.
Platform :
Datastage 11.5 on Linux
DataStage : DB2 Stage : Failure during execution of operator logic
by Frederick Tybalt on Jun.30, 2017, under Error and Issues
Error Details :
Failure during execution of operator logic.
Output 0 produced 0 records.
APT_Decimal::assignFromString: invalid format for the source string. Expecting trailing NUL, space, or tab character(s) got ‘E’
Resolution:
One of the column which has the SQL type Decimal has the value “5E+7” which was not able convert to Decimal value. To eliminate this error read the column as String
This could happen when the decimal field is computed. To revert back to decimal field use explicit cast function
CAST(CAST(DISBURSED_AMOUNT AS FLOAT) AS DECIMAL(31,2))
Platform :
DataStage 11.5 running on linux
DASHDB 10.5 running on linux