Explain how Full Outer Join is implemented BODI?
Submitted by: Administrator- Full Outer Join is implemented by using SQL Transformation and writing custom query.
- Following example describes SQL Transformation to implement Full Outer Join:
select emp.*, dept.deptname, dept.deptno dno, dept.location from scott.employee emp
FULL OUTER JOIN
scott.department dept on (emp.deptno = dept.deptno) ;
- Following example illustrates custom query to implement Full Outer Join:
1. Drag EMPLOYEE, DEPARTMENT tables as src.
2. Place the query transform for performing the Left Outer Join.
3. Place one more query transform for performing the Right Outer Join.
4. Merge and load them into the target.
Submitted by: Administrator
- Following example describes SQL Transformation to implement Full Outer Join:
select emp.*, dept.deptname, dept.deptno dno, dept.location from scott.employee emp
FULL OUTER JOIN
scott.department dept on (emp.deptno = dept.deptno) ;
- Following example illustrates custom query to implement Full Outer Join:
1. Drag EMPLOYEE, DEPARTMENT tables as src.
2. Place the query transform for performing the Left Outer Join.
3. Place one more query transform for performing the Right Outer Join.
4. Merge and load them into the target.
Submitted by: Administrator
Read Online Data Integration Job Interview Questions And Answers
Top Data Integration Questions
| ☺ | What is the difference between Cascade and Drill Through? |
| ☺ | Explain what is Hierarchy Flattening? |
| ☺ | Can you explain Pivot – Columns to Rows? |
| ☺ | Explain how Full Outer Join is implemented BODI? |
| ☺ | Tell me how SNMP Agent is associated with Data Integrator? |
Top Data Warehouse Job Categories
| ☺ | Warehouse Assistant Interview Questions. |
| ☺ | Ab Initio Interview Questions. |
| ☺ | Data Stage Interview Questions. |
| ☺ | ColdFusion Interview Questions. |
| ☺ | Data Warehouse Supervisor Interview Questions. |
