tab1 tab2
1,a 1,d
2,b 3,c
perfoms outerjoin what is the o/p?
write sql query for outerjoin?
Answer Posted / karthi
select * from tab1 full outer join tab2 on
tab1.key_column=tab2.key_column;
or
select * from tab1,tab2 where tab1.key_column(+)=tab2.key_column
union
select * from tab1,tab2 where
tab1.key_column=tab2.key_column(+);
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
options available in sequence job to run,validate?
What are the partitioning techniques available in link partitioner?
How many types of hash files are there?
How you Implemented SCD Type 1 & Type 2 in your project?
What are the types of containers?
What is difference between join, merge and lookup stage?
What are routines in datastage? Enlist various types of routines.
How to RD using transformer?
What is the different type of jobs in datastage?
Can you define merge?
Have you have ever worked in unix environment and why it is useful in datastage?
What is the purpose of pivot stage?
Define meta stage?
What is active and passive stage?
explain about completely flow of sequencers technicaly,without using example??explain about lookup,nullhandling?