i hav source like this .
deptno,sal
1,2000
2,3000
3,4000
1,2300
4,5000
5,1100
i want target like this
target1
1,2000
3,4000
4,5000
target2
2,3000
1,2300
5,1100 with out using transformer
Answers were Sorted based on User's Feedback
Answer / hari chowdary
by using partition technique round rabin we can do easily.
single source table,two target tables
| Is This Answer Correct ? | 16 Yes | 1 No |
____tgt1
|
|
source------transformer---
|
|
-----tgt2
in transformer
TGT1 ---
constraint --> mod(deptno,2) = 1
source.deptno - deptno
source.sal - sal
TGT2 ---
constraint --> mod(deptno,2) = 0
derivation -->
source.deptno - deptno
source.sal - sal
u'll get the ans, if i'm wrong plz correct me
| Is This Answer Correct ? | 6 Yes | 11 No |
I want capture UnMatched records from Primary source and secondary source in JOIN stage?
How the ipc stage work?
Can you explain link buffering?
Can you explain tagbatch restructure operator?
how to create document in datastage?
How can u write exception handling in seq file????
Explain the functionality of your current project?
1 Answers IBM, Miles Software,
How can we run same job in 1 day 2 times
I have load a Dataset in UAT with 2 Node configuration, imported the job into PROD environment which is 4 node configuration and using this DataSet as SRC to other job. will the job run fine or give any errors? If job runs fine, on how many nodes? 2 nodes or 4 nodes?
Where do the datastage jobs get stored?
how many write modes are there in ds
my source is sequencial file and my target is dataset. i am running the job in two node configuration file. my source having 10 records how the data move to target?