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

Can anyone tell me the new features in Informatica 9 Version?

1532


Explain the various test procedures used to check whether the data is loaded in the backend, performance of the mapping, and quality of the data loaded in informatica?

555


How to generate sequence numbers?

618


Could you explain what is enterprise data warehouse?

555


I am new to informatica and learning it,can anybody please tell me how we receive source as flat file in informatica,from where we get this flat file?

1320






How to load the name of the current processing flat file along with the data into the target using informatica mapping?

700


How is union transformation utilized?

570


How can we use batches?

606


Can we use procedural logic inside infromatica? If yes how, if now how can we use external procedural logic in informatica?

604


What are the conditions needed to improve the performance of informatica aggregator transformation?

585


Is it possible to define a single node as a Gateway node as well as worker node?

661


 Informatica Checkpoints

2857


Define the various join types of joiner transformation?

561


What is an Integration service in Informatica?

705


Differentiate between sessions and batches?

574