) 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 a deadlock and how it occurs?
What is broadcasting and replicate?
How do you add default rules in transformer?
What is de-partition in abinitio?
Describe the elements you would review to ensure multiple scheduled batch jobs do not collide with each other?
What is a rollup component?
What is the difference between dml expression and xfr expression?
Mention what is the syntax for m_dump in abinitio?
What are the six data process products of ab initio (architecture of ab initio)?
Mention some file extensions which are used in abinitio?
What are the types of data processing you are familiar with?
What is publickey and private key?what is the use of this two keys?
What happens when we provide null key to sort, merge and pbks in Abinitio ?
What is rollup component?
How can you SORT an already partitioned (round-robin) data ? How to use in abinitio graph? 3. How internally partition by key decides which key to send in which partition ? How to use in abinitio graph? 4. What is PDL ? Give him a shell type parameter and ask him to convert it to PDL. How to use in abinitio graph? 5. As shell type parameters are not supported by EME, then how you can use shell type parameter (If you don't want to use PDL) without hampering lineage diagram ? How to use in abinitio graph? 6.How you can generate dml from a COBOL copy book ? How to use in abinitio graph? 7. How you can convert from ebcdic to packed decimal ? How to use in abinitio graph?