create a job to get the previous row salary for the current row.if there is no previous row exists for the current row,then the previous row salary should be displayed as null?
empid salary previoussalary
10 1000 null
20 2000 1000
30 3000 2000
40 4000 3000
Answer Posted / venkata ramana
Input:Seq file
empid,salary
10,1000
20,2000
30,3000
40,4000
Sequential file stage--->Trasformar Stage---->Dataset Stage
Transformation Logic:
InputTab-->Partition--> select "same"---> Select "Perform Sort" on key "empid"
Declaration of Stage Variables:
PrevSal Varchar ( Set right Intial value ' ' i.e Null value)
CurSal Varchar
Derivation Stage Variables
---------- ---------------
CurSal PrevSal
Linkname.Salary CurSal
Derivation Column name
--------- -----------
Linkname.empid empid
Linkname.Salary Salary
PrevSal previoussalary
Output DataSet result:-
empid salary previoussalary
10 1000 null
20 2000 1000
30 3000 2000
40 4000 3000
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
how to sort two columns in single job in datastage.
Explain usage analysis in datastage?
how to delete one row in target dataset
EXPLAIN SCD
What can we do with datastage director?
Explain connectivity between datastage with datasources?
Does datastage support slowly changing dimensions ?
disign the complex job in u r project?(they are aksing only complex job design and then data flow...)
What are data elements?
What steps should be taken to improve Datastage jobs?
What are the components of ascential data stage?
What a datastage macro?
What is difference between server jobs & parallel jobs?
Why do we use exception activity in Datastage?
Define Merge?