) Diff.between Output index and Output indexes?

Answers were Sorted based on User's Feedback



) Diff.between Output index and Output indexes?..

Answer / 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 ?    41 Yes 0 No

) Diff.between Output index and Output indexes?..

Answer / chiranjiv pandey

When we use output index, a single record can go only single
port but in case of output indexes one record can go one or
more that one port.

Is This Answer Correct ?    39 Yes 0 No

) Diff.between Output index and Output indexes?..

Answer / 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

) Diff.between Output index and Output indexes?..

Answer / sasi

When we use output index in reformat having multiple output
ports it decides through which port the output goes...
In case of output indexes the output goes through all the
ports..

Is This Answer Correct ?    12 Yes 15 No

Post New Answer

More Ab Initio Interview Questions

Difference between informatica vs ab initio?

0 Answers  


How does PBK and Sort component and Join(in memory sort) work?I mean in the join component i have used In Memory Sort,so how will it work in terms of performence as compared with PBKand Sort Component?

1 Answers  


State the working process of decimal_strip function?

0 Answers  


What is the difference between dml expression and xfr expression?

0 Answers  


Please some body send me Ab Initio material in my mail ... sitakanta2009@gmail.com Thanks in Advance!!!

1 Answers  






Can we specify checkpoints without Phases?

3 Answers   IBM, Tech Mahindra,


What are the types of data processing you are familiar with?

0 Answers  


What do you mean by a transaction file and how it is different from that of a sort file?

0 Answers  


. How can you get all the fields form a lookup files ? (Which function)

3 Answers   TCL,


What is publickey and private key?what is the use of this two keys?

0 Answers  


How to run the graph without GDE?

1 Answers  


What do you understand by local lookup?

0 Answers  


Categories