How many joins in Informatica

Answer Posted / sanjaygupta1981

The Informatica supports the following types of joins:
• Normal
• Master Outer
• Detail Outer
• Full Outer

Normal join: discards all the rows of data from the master
and detail source that do not match, based on the condition.

SELECT * FROM employees, departments WHERE
employees.department_id = departments.department_id

Master outer join: discards all the unmatched rows from the
master source and keeps all the rows from the detail source
and the matching rows from the master source.

SELECT * FROM employees LEFT OUTER JOIN departments ON
(employees.department_id = departments.department_id)

Detail outer join: keeps all rows of data from the master
source and the matching rows from the detail source. It
discards the unmatched rows from the detail source.

SELECT * FROM employees RIGHT OUTER JOIN departments ON
(employees.department_id = departments.department_id)

Full outer join keeps all rows of data from both the master
and detail sources.

SELECT * FROM employees FULL OUTER JOIN departments ON
(employees.department_id = departments.department_id)

Is This Answer Correct ?    23 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is $$$$?

1820


Enlist some properties of sessions.

729


Define update strategy?

717


Source and Target are flat files, Source table is as below ID,NAME 1,X 1,X 2,Y 2,Y On Target flat file i want the data to be loaded as mentioned below ID,NAME,REPEAT 1,X,2 1,X,2 2,Y,2 2,Y,2 How to achieve this, Can i get a map structure

6659


tell me 5 session failure in real time how can you solve that in your project?

1736






How to do unit testing in informatica?

830


what is unit testing?tell me proceedure

1879


What is joiner transformation?

659


How to generate or load values in to the target table based on a column value using informatica etl tool.

704


Explain direct and indirect flat file loading (source file type) - informatica

952


How can we delete duplicate rows from flat files?

847


What is workflow manager?

667


Define the various join types of joiner transformation?

646


can any one explain me what i have to tell about insurance project in interview,,,,when he asked to tell about ur project

2219


Differences between version 7.x and 8.x.

1521