I have a few records all are same structures data, I want to
store data in multiple targets how?
Answer Posted / geetha
Use transformer stage and modulus function. Lets say we have 4 target tables and set constraint to each target links as below.
Link1--> mod(@INROWNUM,4)=0
Link2--> mod(@INROWNUM,4)=1
Link3--> mod(@INROWNUM,4)=2
Link4--> mod(@INROWNUM,4)=3
we can also use filter stage and where clause to split the records
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is usage analysis in datastage?
How complex jobs are implemented in datstage to improve performance?
Why do you need stage variables?
What is apt_config in datastage?
how to export or import the jobs in .ISX file
What is the use of datastage designer?
What are sequencers?
What is the process of killing a job in datastage?
root tree will find which is server job and which is parallel job?
What is oci?
What is a merge?
What are the different plug-ins stages used in your projects?
Can you explain engine tier in information server?
What is the Environment Variable need to Set to TRIM in Project Level?(In transfermer, we TRIM function but I need to impliment this project level using Environment variable)
Hi guys, Please design a job for dis requirement with derivation(solution). my source table like dis. emp_no qualification 1 a 1 c 2 a 3 c 3 b To loaded to target like dis emp_no qualification 1 b 2 b 2 c 3 a my requirement is every employer have three qualifications i.e a,b and c. what qualification missed in source table that will be move to target systems. Hope u got it the requirement. Right Thanks.