Search found 6797 matches
- Tue Jan 23, 2007 1:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get rid of mesg -Violation of PRIMARY KEY constraint
- Replies: 13
- Views: 7394
- Tue Jan 23, 2007 1:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DATE CONVERSION
- Replies: 7
- Views: 1464
- Tue Jan 23, 2007 1:29 pm
- Forum: General
- Topic: CR/LF for the new generation
- Replies: 45
- Views: 19163
- Tue Jan 23, 2007 1:20 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: parameter
- Replies: 42
- Views: 6765
- Tue Jan 23, 2007 12:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get rid of mesg -Violation of PRIMARY KEY constraint
- Replies: 13
- Views: 7394
- Tue Jan 23, 2007 12:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: varchar to NUMBER conversion problem
- Replies: 3
- Views: 788
EDITED: After realizing its a px job.
Try this
Try this
Code: Select all
IF LEN(TRIM(in.PROD_KEY)) < 1 then SetNull() else in.PROD_KEY- Tue Jan 23, 2007 12:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CDC process issue
- Replies: 4
- Views: 1826
- Tue Jan 23, 2007 12:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: parameter
- Replies: 42
- Views: 6765
That job activity will pass it down the chain. You will feed the parameter to the a single job activity as "Master". It will set the parameter for that Master. Inside Master you will have, say five job activities. You will choose Master's job prameter and feed it to where ever you want to in the sub...
- Tue Jan 23, 2007 12:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CDC process issue
- Replies: 4
- Views: 1826
Read the CDC manul help for more understanding of how this stage works. Basically when you pass your data through CDC the output will have codes, based upon which you will know wheather its a new record, updated etc. So Option 2 does not make sense. You will already have new,modified,unchanged and d...
- Tue Jan 23, 2007 12:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Regarding exporting datamodel
- Replies: 53
- Views: 13005
- Tue Jan 23, 2007 11:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Obtaing Job sequence Info
- Replies: 12
- Views: 3984
A job list has to be present before you get inside your routine. dsjob -ljobs can be used to list all the jobs. Select NAME from DS_JOBS; is a UV command you can run to get all the job names. But i would stick to dsjob as the second one would sieze to exist in versions to come, so I have heard. Refr...
- Tue Jan 23, 2007 11:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal termination of stage ColSrcJob..Trans1 detected
- Replies: 5
- Views: 1168
- Tue Jan 23, 2007 11:04 am
- Forum: Site/Forum
- Topic: 3K in No time!!!!
- Replies: 18
- Views: 8632
- Tue Jan 23, 2007 10:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Strange problem in Job Sequence
- Replies: 18
- Views: 4368
- Tue Jan 23, 2007 10:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal termination of stage ColSrcJob..Trans1 detected
- Replies: 5
- Views: 1168
If you are afraid of corruption of the file, make a copy of that job, delete the original one, rename the copy. This way all associated internal files with this job will be re-created. Also next time you get this error, reset the job. This will create more log entries starting with "From previous ru...