) Diff.between Output index and Output indexes?
Answer Posted / suman sv
Use output-index when we want to direct a single record to a single transform-output port.
Ex: suppose there are 100 input records and two output ports.
According to the transform function you specify for output-index, the split can be 50/50, 60/40, 0/100, 99/1, or any other combination that adds up to 100.
Use output-indexes to direct a single record to multiple transform-output ports.
Ex: out :: output_indexes(in) =
begin
out :1: if (in.kind == "a") [vector 0, 1, 2];
out :2: if (in.kind == "b") [vector 2, 3, 4];
out : : [vector 5];
end;
it directs records as:
Ports 0, 1, and 2 if the field in.kind is “a”
Ports 2, 3, and 4 if the field in.kind is “b”
Port 5 if otherwise
| Is This Answer Correct ? | 43 Yes | 1 No |
Post New Answer View All Answers
What is the purpose of having stored procedures in a data-based?
What is conduct>it?
What are the differences between informatica and abinitio?
what is the use of catlog or catlogfile?
What are differences between different gde versions(1.10,1.11,1.12,1.13and 1.15)?what are differences between different versions of co-op?
Have you ever encountered an error called “depth not equal”?
What are the Types of parallelism in detail?
How to replace last 4 digits of an input column with XXXX given input column has 12 digits?
Explain how abinitio eme is segregated?
What are the kinds of layouts does ab initio supports?
Mention what is abinitio?
What is the difference between a scan component and a rollup component?
What is the importance of eme in abinitio?
Define ramp limit in ab initio?
Given input file with single column having 1 2 2 4 3 .. Required output 1 2 2 4 4 4 4 3 3 3.. How?