Search found 6797 matches

by DSguru2B
Fri Dec 15, 2006 7:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController Error
Replies: 2
Views: 1105

You just need a null handling mechanism. Do an exact search on 'Null string argument'.
by DSguru2B
Fri Dec 15, 2006 7:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reading sequential file as a single field
Replies: 14
Views: 3485

one more help...i need that i should read the date field and pass it as a stage variable to load it into the table.. i want to read only the records not the company name,the ********s and the blank line... how should i do that I thought i gave you the solution in your other post . You will have bla...
by DSguru2B
Fri Dec 15, 2006 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validating email id field
Replies: 13
Views: 3643

You lost me there Kim. :roll:
by DSguru2B
Fri Dec 15, 2006 7:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation error of Transformer stage
Replies: 11
Views: 6567

I am running out of ideas now. Build another simple job. And see if that compiles. Do any of your px jobs with a transformer compile?
by DSguru2B
Fri Dec 15, 2006 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Error
Replies: 4
Views: 1338

Need more info, what is your job design? What is this stage thats aborting? Reset the job and get any additional warning messages fromt he directors log and post it here.
by DSguru2B
Fri Dec 15, 2006 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to count the number of delimiters in a reord
Replies: 14
Views: 9213

Once again. Stick to DataStage. You will have much lesses pieces to bind and maintain.
by DSguru2B
Fri Dec 15, 2006 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Save doublon
Replies: 22
Views: 5972

And now now you will be punished :twisted: Just Messing with ya!
by DSguru2B
Thu Dec 14, 2006 9:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validating email id field
Replies: 13
Views: 3643

Use the Matches function in the transformer. You dont need a routine. Something like

Code: Select all

If in.Link Matches '...@...com' then @True else @False

If you get a 1 that means email is in the format xyz@xyz.com else if you get a 0 that means its not in xyz@xyz.com
by DSguru2B
Thu Dec 14, 2006 9:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: loading as per date value
Replies: 9
Views: 2358

I gave you a complete solution as a welcome. The stage variable will take care of the second, third and so on, all the generation values. Make sure the first line in your file is Generation Date.
by DSguru2B
Thu Dec 14, 2006 9:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SAP APO
Replies: 6
Views: 1768

You guys make me laugh :P
by DSguru2B
Thu Dec 14, 2006 9:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: loading as per date value
Replies: 9
Views: 2358

You can do this by reading the entire record as one column and then split it inside the transformer as Whale suggested. Define a stage variable GenDate | if in.Link Matches 'generation...' then Field(in.Link,":",2) else GenDate Now your columns will be Col1 | Field(in.Link,&quo...
by DSguru2B
Thu Dec 14, 2006 7:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bypassing notification activity in a sequencer
Replies: 35
Views: 9528

chulett wrote:
That's just me being anal, ...


O c'mon Craig. Your just being technically correct :wink:
by DSguru2B
Thu Dec 14, 2006 7:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding jobparameters used in DRS stage
Replies: 17
Views: 5266

Are you getting that error while viewing data or while running? I know for viewing data, $PROJDEF was to be replaced by its true value in 7.5. But while running, it runs fine. This functionality was enhanced in 7.5.2 or 7.5.1A
by DSguru2B
Thu Dec 14, 2006 7:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: to make the Transformer Wait for the file
Replies: 7
Views: 1431

Modularization my friend. Build the text files in one job. Cat them and load in the second job.
by DSguru2B
Thu Dec 14, 2006 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time Limits on jobs
Replies: 21
Views: 4794

Exception handler only fires if anything goes wrong in the sequence job and it is not handled. Thats when the Exception handler fires.