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

Design time, run time. If you don't create parameter what will happen

1435


Separate from an archive server and a powerhouse?

506


Under what conditions selecting sorted input in aggregator will still not boost session performance?

644


While importing the relational source definition from the database, what are the metadata of source that will be imported?

799


How do we call shell scripts from informatica?

606






Briefly describe lookup transformation?

609


What is the status code in stored procedure transformation?

693


waht type of interface is used for testing the data in informatica

1846


In informatica workflow manager, how many repositories can be created?

797


Define pmcmd command?

637


HOW TO PROCESS THE ROWS FROM JOINER AND EXPRESSION TRANSFORAMTION TO SORTER TRANSFORMATION

1490


draw informatica architecture 8.6 ?

3480


What is a stored procedure transformation?

620


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

619


what are the different types of transformation available in informatica. And what are the mostly used ones among them?

553