) Diff.between Output index and Output indexes?
Answer Posted / harika motepalli
Both Output index & output indexes used for "Conditional assignment" of your input data to out ports but the only difference is Output_index allows to assign to only 1 output port whereas Output_indexes allows to assign to multiple output ports.
********************************* Eg 1 **********************************
out::output_index(in)=
begin
out:1:if ( in.country=='Malaysia') 0 ; // if country name is Malaysia then divert input records to out0 port
out:2: if (in.country--'Singapore') 1;
out:: 2;
end;
**************************** Eg 2 **********************
out::output_indexes(in)=
begin
out:1:if ( in.country=='Malaysia') [ vector 0,1] ; // if country name is Malaysia then divert input records to out0 & out1 ports
out:2: if (in.country--'Singapore') [ vector 2 ];
out:: [vector 3 ];
end;
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
List out the file extensions used in abinitio?
What are the fundamental blocks of co> operating system of 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?
What do you understand by overflow errors?
How do you add default rules in transformer?
Mention what information does a .dbc file extension provides to connect to the database?
What do you mean by a transaction file and how it is different from that of a sort file?
What parallelisms does Abinitio support?
How to process records in batches like 1-20 records in first execution and 21-40 records in second run.. so on
How co> operating system natively processes the data?
Mention what is a partition and what are the different types of partition components in abinitio?
How can you force the optimizer to use a particular index?
What is data encoding?
How abinitio eme is segregated?
What is the difference between partitioning with key / hash and round robin?