A table containg 100 records B table containg 20 records we
have to join two tables in left outer it containg target 100
records but target containg 101 record at that time what is
the issue arise

Answers were Sorted based on User's Feedback



A table containg 100 records B table containg 20 records we have to join two tables in left outer i..

Answer / srinivas

Hi,qustion was not clear.

As per my understanding After join if we get 101 records in target, then we can say one duplicate was there in B table.
While joining the tables by using left outer total records from left table and matched records from both will be load into target.
so i will give small example

We have two tables A & B
A having

Id Name
1 sri
2 hari
3 prasad

B Having
LeavesId
1
1
2
3

If will do the left outer join u will get below

No name leavesid
1 sri 1
1 sri 1
2 hari 2
3 prasad 3.

As per above example may help u to demonstrate the your query.

Thanks
Sri

Is This Answer Correct ?    26 Yes 0 No

A table containg 100 records B table containg 20 records we have to join two tables in left outer i..

Answer / geetha

Extra 1 records  is populated in case of duplicate records in the reference tables. lets say we have emp_id A in left table and we have two emp_id A ,in this case we will have duplicate records in the output.

Is This Answer Correct ?    2 Yes 0 No

A table containg 100 records B table containg 20 records we have to join two tables in left outer i..

Answer / hirdesh srivastava

If you join two tables either equi join, left outer join or right outer join, result records can't be greater than max record of a big table. Until or unless you go for full outer join. e.g. if there are 100 records in one table and 20 records in other table then if you go for any join except full outer join result records won't be greater than 100 records. 

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More Data Stage Interview Questions

In merge stage can we update the values?

3 Answers   TCS,


What is the use of Row generator stage?

2 Answers  


Explain how a source file is populated?

0 Answers  


Can you define merge?

0 Answers  


What are the steps needed to create a simple basic datastage job?

0 Answers  






How can we achive parallelism

1 Answers   CTS,


What a datastage macro?

0 Answers  


in datastage scenario this is sourec data i want this traget? tell me please? source target ------- ------- Mohan,Prasad,Naresh Mohan Prasad Naresh

1 Answers   IBM,


How many nodes supported by a one cpu in parallel jobs?

3 Answers   IBM,


Explain briefly scd type2 in datastage7.5x2(parallel)

1 Answers   IBM,


How can we perform the 2nd time extraction of client database without accepting the data which is already loaded in first time extraction?

0 Answers   Reliance,


If you want to use a same piece of code in different jobs, how will you achieve this?

0 Answers  


Categories