kapil


{ City } hyderabad
< Country > india
* Profession * s.e.
User No # 27084
Total Questions Posted # 0
Total Answers Posted # 3

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 16
Users Marked my Answers as Wrong # 4
Questions / { kapil }
Questions Answers Category Views Company eMail




Answers / { kapil }

Question { Deloitte, 45699 }

Can we have a Mapping without a Source Qualifier?


Answer

In case of XML files, it's called as XML source qualifier.
So we can't have mapping without SQ.

Is This Answer Correct ?    4 Yes 3 No

Question { Wipro, 6246 }

what is work of PUSH DOWN option


Answer

The Pushdown Optimization Option improves performance by
enabling processing to be “pushed down” to a
relational database, maximizing fl exibility, minimizing
unnecessary data movement, and providing the optimal
performance for both data-intensive and process-intensive
transformations.

Is This Answer Correct ?    2 Yes 0 No


Question { 3737 }

Hello,

I have the below table:

CityID CityName CostOfLiving
1 Mumbai 5000
1 Bangalore 4500
1 Chennai 4800
2 Vapi 6000
3 New Delhi 8000

I am passing the rows of the above table through the
aggregator transformation in Informatica

What happens in the following conditions:
1) I specify no group-by ports?
2) I specify a group-by on CityID without making any
separate post for aggregation? Which city and costofliving
will this eventually take for CityID=1?
3) Rest being same as point 2,I take the sum of cost of
living.Which city will be returned for ID=1?

Thanks for your help!



Answer

Aggr transformation returns last row of each block or each
group. So here are the ans
Output of Case 1)
3 New Delhi 8000

Output of Case 2)
1 Chennai 4800

Output of Case 3)
1 Chennai 14300

Is This Answer Correct ?    10 Yes 1 No