0% found this document useful (0 votes)
483 views1 page

Ab Initio Error Logs - Resolution

Error 1: There is an issue with mapping multiple fields to a single output field in a join transformation. Check the field mappings. Error 2: The key field "Ord_id" could not be found for input1 in a join. Use an override key. Error 3: The join type of simultaneous singlematch driving input and matchoptional hashtable input is not supported. Exchange the driving and hashtable inputs or use a merge join. Error 4: There is a type mismatch in summing the "Sales" field, which seems to be defined as a string rather than a numeric type.

Uploaded by

Anand Selvadurai
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
483 views1 page

Ab Initio Error Logs - Resolution

Error 1: There is an issue with mapping multiple fields to a single output field in a join transformation. Check the field mappings. Error 2: The key field "Ord_id" could not be found for input1 in a join. Use an override key. Error 3: The join type of simultaneous singlematch driving input and matchoptional hashtable input is not supported. Exchange the driving and hashtable inputs or use a merge join. Error 4: There is a type mismatch in summing the "Sales" field, which seems to be defined as a string rather than a numeric type.

Uploaded by

Anand Selvadurai
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

---1---

Error from Component 'Join', Partition 0


[M500,M511,M486]
While compiling transform join:
While compiling out.*:
There is already an assignment for this destination with the same priority.

Resolution: Check the transformations and map the fields to its coresponding single
out field.
2 in fields should not be mapped to a Out field.

----2--------------------------

Error from Component 'Join', Partition 0


[B1]
Error relating parameter "key" to the record format for input in1:
Field "Ord_id" not found in
"record
string(",") Order_ID;
date("DD-MM-YYYY")(",") Order_Date;
string(",") Order_Priority;
string("\r\n") Product_Ord_id;
end".

Resolution: Use Override key for the Input1 flow in Join component.

----3-----------------------------

Error from Component 'Join', Partition 0


[B1]
Unsupported join type: simultaneous singlematch driving input
and matchoptional hashtable input. Exchange the driving and
hashtable inputs or use the merge-join component.

Resolution: When you set the sorted-input parameter to this choice, Join accepts
ungrouped input and maximizes performance by loading all records from all inputs
except the largest - the driving input - into main memory.

The driving input then flows over the other records without being stored, to
produce the join output.

Because all inputs except the driving input need to fit into main memory, within
the limit specified in the max-core parameter, make the largest input the driving
input.

------4------------

out.Sum_sales: Invalid assignment entered:: While compiling expression


sum(in.Sales): Type mismatch. Can't find operator function for string(",")
+string(",").

You might also like