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


Please Help Members By Posting Answers For Below Questions

How do you load first and last records into target table? How many ways are there to do it? Explain through mapping flows.

1207


draw informatica architecture 8.6 ?

3956


Name at least 5 different types of transformations used in mapping design and state the use of each.?

1219


EXL informatica Questions

1464


How to create the source and target database connections in server manager?

1148


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

2833


Write the unconnected lookup syntax and how to return more than one column.

1179


How do you load more than 1 max sal in each department through informatica or write sql query in oracle?

1678


Explain in detail about scd type 1 through mapping.

1656


Explain scd type 3 through mapping.

1083


What is dimensional table? Explain the different dimensions.

1274


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

4802


Tell me about your experience in informatica? what is best mark you can give yourself? How to answer this question?

8299


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.

1252


How do you remove duplicate records in informatica? And how many ways are there to do it?

1241