What is the order of execution of a graph when it runs?
Latest Answer: 1. All its parameters are initialized2. Start script call3. Graph start4. End script executed. ...
How to calculate the total number of records in the file using REFORMAT instead of ROLLUP?
Latest Answer: Via its log port. ...
How do we append records to an already existing file usin abinitio graph?
Latest Answer: Create a graph by taking the existing file as the out put file and keep the mode of the output file in Append Mode. Pass the new records from the input file to this output file through a reformat. This will append new records in the existing File. ...
What is output index? How does it work in reformat?Does below function show Output index in useoutput:1:if(in.emp.sal
Latest Answer: Output index function is used in reformat having multiple output ports to direct which record goes to which out port. for eg. for a reformat with 3 out ports such a function could be likeif (value=='A') 1 else if (value=='B') 2 else 3which ...
How does component folding works?
What is the advantage of SORT within GROUP Clause?
Latest Answer: Sort within Groups refines the sorting of data records already sorted according to one key and it sorts the records within the groups formed by the first sort according to a second key. ...
What are environment variable? Why are they required?
Latest Answer: Environment Variables or other wise know as ABINITIO environment variable. Its set in stdenv under which private project and pubic project will be there.Parameters like $AB_HOME , $AB_AIR_RROT will be present in environment variable and this will link ...
What is the need of config variables in abinitio?(ab_job,ab_max_core) and where to define them?
How to avoid duplicates without using dedup component?
Latest Answer: We can avoid duplicate by using "key_change" method of the rollup component.
The code will be like below.
out :: key_change(prev,curr)=
begin out :: cur != prev ; end out :: rollup(in) = begin out :: in ; end
...
What will happen when we pass dot or invlaid parameters in the inout component layout URL?
View page [1] 2 3 4 Next >>

Go Top