I am posting Informatica complex scenarios questions in this post and I will post Informatica scenarios answers in my next post. The follow informarica scenarios will be useful for attending interview also to practice for handling different scenarios in day to day office work. Scenario 1: I have Source as a Table and I want to load the data in Flat file Target with one Header and one Trailer Header: (emp,sysdate) Trailer: count(records), sum(salary) How will be the approach in Informatica Scenario 2: Hi all, My source, Table 1 null 11 null 11 Table 2 66 1 67 2 The output I need is null 11 66 1 null 11 67 2 so for the above requirement i have tried with full outer join.But that is not worked for me. Scenario 3: Source Row is Column A Column B ...................... ABC 3 XYZ 2 Target should come as Column A Column B ........................ ABC 3 ABC 3 ABC 3 XYZ 2 XYZ 2 Scenario 4: I have a source table as below a1 a2 a3 a4 a5 a6 a7 a8 a9 Need an output as a1,a2,a3 a4,a5,a6 ...