Hi,
I used tSchemaComplianceCheck component to generate a list of rejected data that violates the schema.
In the tFileInputDelimited, the schema is defined as follows:
ID NUMBER
CREATE_DT STRING
In the tSchemaComplianceCheck, I selected "Custom Defined" option and defined the checked columns
ID; Number; checked Max Length
CREATE_DT; Date; Date pattern: yyyy-MM-dd HH:mm:ss
The data coming in as
ID: 1
CREATE_DT: 01-10-2010 16:12:12
However, this record ID:1 is not rejected from the tSchemaComplianceCheck which cause a Unparseable date error.
How can I make sure the data that is DATE datatype does meet the date pattern requirement?
Thanks in advance!