T) Can using lookup function can you achieve full outer join ?



  •     Only left or right join can be achieved as we can’t pull uncalled records from lookup file. 


E.g. Input file have below 3 records: 

             ID
             1
             2
            3

                        ID Name
                        1    A
                        2    B
                        3    C
                        4    D
                        5    E 


  •   Suppose now you have used lookup function and then you can’t pull all the records from lookup file in the output process. 
  • As there is no ID is present in input file for number 4 & 5 hence their Name will not get pulled. lookup(“input file”,in.ID).Name.

  •  Hence in Abinitio using lookup function we can’t achieve full outer join functionality. To achieve this we need to use Join component.

Comments

Popular posts from this blog

T) For data parallelism, we can use partition components. For component parallelism, we can use replicate component. Like this which component(s) can we use for pipeline parallelism?

T) When to use sort within groups ?

T) Explain about on .abi-unc files in abinitio ?