The row where it exceeds 19 digit sum is ignored by informatica and entered in rejected rows. Is there a way to avoid this problem other than changing the datatype of bigint at source qualifier or at target?I have a informatica mapping as follows
- The source is oracle database and at the source qualifier I'm doing simple sum of all columns using SQL; out of which one column has bigint datatype.
- At the target is greenplum database that should store the outcome of sum.
Is there a way for bigint datatype to accommodate more than 19 digits in informatica?
92 Views Asked by Arsalan At
1
Have a look at Transformation Data Types. Bigint allows precision of up to 19 digits. For larger ones I guess you need to use Decimal. Have you tried that?