You are on page 1of 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