Source having one lakh record and loaded into target. Then, how can i compare records will loaded in table? For example Source having Firstname,Lastname. the same Firstname,Lastname record will be loaded into Target? How can i check in Oracle?
Answers were Sorted based on User's Feedback
You can use the minus keyword
Source table name is A
Target table name is B.
Query can be
select * from B
minus
select * from A
or else you can do a minus from A to B.
select * from A
minus
select * from B
Inthis way you can find the mismatch
(Note: This is just one way pf comparing)
Thanks,
Ranjan
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / abhinaw prakash
If both exist in same database then you can use NOT EXIST
function to find out the missing rows.
If both exist in diff databases then you can join them using
joiner and compare the rows in expression and Raise a Flag
for not matching rows.You can then use filter and pass only
the non matching rows into the target.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / abhinaw prakash
We can use lookup transformation to stay away from these
problem and can lookup the target columns befor entering the
data.
| Is This Answer Correct ? | 1 Yes | 0 No |
What are the components of workflow manager?
Can we use Lookup instead of Joiner to join 2 tables? If yes which is faster and why?
How can you recognise whether or not the newly added rows in the source r gets insert in the target ?
what are the reusable tasks in informatica ?
11 Answers CTS, HP, IBM, TCS,
Describe data concatenation?
What is a predefined event?
Hi, Can someone send me the DWH and Informatica FAQ's at priti.singh84@gmail.com Thanks in Advance, preeti
Source as 1 1 2 2 3 3 How to get target as 1 2 3 and 1 2 3
Differentiate between source qualifier and filter transformation?
Why do we use DSS database for OLAP tools?
Can you copy the batches?
what is the difference between mapplet & stored procedure?