i have a table like
empid ename year month sal
1 x 98 jan 500
1 x 98 feb 500
1 x 98 mar 500
1 x 99 jan 600
1 x 99 feb 600
2 y 98 jan 600
2 y 98 feb 600
2 y 98 mar 600
2 y 99 jan 700
2 y 99 jan 700
and so on
i want to find out totsal for every emp on year wise
plz help me
Answer Posted / ankit kansal
Using SQL->
select empid,ename,year,sum(sal) Total_Sal from table_name
group by empid,ename,year;
Using Informatica->
SRC->SQ->Agg(sum(sal)[group by empid,ename,year])->TGT
http://deepinopensource.blogspot.in/
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What could be the possible resons of locks by user?
The question was on time stamp. what is the difference between HH and HH24 when to use when.
How can you increase the performance in joiner transformation?
Differentiate between Load Manager and DTM?
How union transformation is used?
What is meant by incremental aggregation?
can any one give some examples for pre sql and post sql(Except dropping and creating index).
How to go to the older version for a mapping?
What is an expression transformation?
Briefly define a session task?
What is meant by a domain?
Explain how to import oracle sequence into informatica?
What is an active transformation?
Explain about cumulative Sum or moving sum?
Explain what are the different types of transformation available in informatica. And what are the mostly used ones among them?