adspace
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?
Answer Posted / ranjan
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 |
Post New Answer View All Answers
How do you load first and last records into target table? How many ways are there to do it? Explain through mapping flows.
draw informatica architecture 8.6 ?
Name at least 5 different types of transformations used in mapping design and state the use of each.?
EXL informatica Questions
How to create the source and target database connections in server manager?
Hi all , I am planning for informatica S - PowerCenter 8 Mapping Design certification. I have rewuired the dumps for the same. if anyone of you having the same pl. share it with me. This will be of great help. My contact is : sagardev7@gmail.com TIA , Sagar
Write the unconnected lookup syntax and how to return more than one column.
How do you load more than 1 max sal in each department through informatica or write sql query in oracle?
Explain in detail about scd type 1 through mapping.
Explain scd type 3 through mapping.
What is dimensional table? Explain the different dimensions.
can anybody send me some real time screenshots of mapping in informatica powercenter. i will be vary thankful to him. my e-mail id :- prakashkumar.kumhar@gmail.com
Tell me about your experience in informatica? what is best mark you can give yourself? How to answer this question?
I have two different source structure tables, but I want to load into single target table? How do I go about it? Explain in detail through mapping flow.
How do you remove duplicate records in informatica? And how many ways are there to do it?