How many joins in Informatica
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 to load a Dimension ? and how to load a fact table?
How can you use an Oracle sequences in Informatica? You have an Informatica sequence generator transformation also. Which one is better to use?
how can send duplicate records to one tableand non duplicate records to one table with simple clear mapping?
How to delete duplicate records if we have huge volume of records in a table ? (rowid is not the correct approach)
in what type of scenario bulk loading and normal loading we use?
How can i set break points in debugging mode ? can explain steps please?
What is the main purpose of Unconnected lookup other than updating slowly changing dimensions? or In which case u use Unconnected lookup?
Explain the aggregator transformation?
What does update strategy mean, and what are the different option of it?
What is an unconnected transformation?
Can we use the mapping parameters or variables created in one mapping into another mapping?
There are 4 source files which contains same metadata create target that should display the file name along with record please send answer with mapping