Hi dude,
i/p
eno ename date edate deptno
1 x 10thjuly 30july A
2 y 10th aug 30 aug B
1 x 1aug ------ A
3 z 1jan ------ c
2 y 1sep ------ B
o/p is
eno ename date edate deptno
1 x 1aug ------ A
2 y 1sep ------ B
3 z 1jan ------ c
Here edate is System generates we don't know that value.
Please design the job by using SCD stage and Sql query.
If any body know this answer please tel me.
Tanks.
Answer Posted / subhash
Using Sql Query:
SELECT
eno, ename, date, edate, deptno
FROM INPUT_TABLE
WHERE edate IS NULL
ORDER BY eno;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
root tree will find which is server job and which is parallel job?
Explain entity, attribute and relationship in datastage?
Differentiate between Join, Merge and Lookup stage?
What are the main differences you have observed between 7.x and 8.x version of datastage?
What are some prerequisites for datastage?
AGGREGATOR default datatype
What are the different common services in datastage?
what is the difference between == and eq in UNIX shell scripting?
Explain how a source file is populated?
1.what is repartionoing technique? 2.what deliverables transferred to client using datastage? 3.how to write loop statements using nested loop sequence?
How rejected rows are managed in datastage?
What a datastage macro?
Explain usage analysis in datastage?
Where the datastage stored his repository?
What is meta stage?