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
Post a Comment