How many joins in Informatica

Answers were Sorted based on User's Feedback



How many joins in Informatica..

Answer / ravindra.15aug

Normally four joins in Informatica
1) Normal join
2) Master join
3) Detail join
4) Full outer join

Is This Answer Correct ?    38 Yes 2 No

How many joins in Informatica..

Answer / 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

How many joins in Informatica..

Answer / srinivas

there are four types of joins in Informatica
1) Normal join
2) Master join
3) Detail join
4) Full outer join

Is This Answer Correct ?    13 Yes 2 No

How many joins in Informatica..

Answer / srinivas

there are four types of joins in Informatica
1) Normal join -- Equi join
2) Master join -- Left outer join
3) Detail join -- Right outer join
4) Full outer join -- Full outer join

Is This Answer Correct ?    9 Yes 7 No

How many joins in Informatica..

Answer / maj

In this select query I think instead of LEFT OUTER
JOIN,Need to put "RIGHT OUTER JOIN"

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

Is This Answer Correct ?    3 Yes 2 No

Post New Answer

More Informatica Interview Questions

How i can Schdule the Informatica job in "Unix Corn Schduling tool" ?

2 Answers  


what is the diff b/w target load plan and cbl?

3 Answers   CTS, iGate,


Examples of Fatal & Non-Fatal error?

2 Answers   Cap Gemini,


write sql query vertical to horiozontal following table id name 1 100 2 dinesh 3 india 1 101 2 suresh 3 india 1 103 2 prakesh 3 usa i want output like id name country 100 dinesh india 101 suresh india 103 prakesh usa

0 Answers   TCS,


How to improve the performance of a session using sorter transformation?

0 Answers   Informatica,






How can we update a record in the target table without using update strategy?

0 Answers  


what are all the deliverables of ETL informatica power center project? what are all updated or created by etl developer as his everyday activities?

0 Answers  


How many types of sessions are there in informatica.please explain them?

0 Answers   Informatica,


where to select code page option?

2 Answers   TCS,


What are Dimensions and various types of Dimensions?

3 Answers   PayPal, TCS,


Define Pmrep command?

0 Answers  


what is the difference between repository & Intergration service

1 Answers  


Categories