Search found 15603 matches

by ArndW
Wed Aug 22, 2007 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conditional execution of next job in sequence
Replies: 22
Views: 5767

Either in a user activity of the calling sequence or in the Job Control section of the second job add some lines to get the number of rows that went down that exception link from the last run of job 1, if that is greater than 0 then either don't start the second job or (if you decide to put it in th...
by ArndW
Tue Aug 21, 2007 11:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conditional execution of next job in sequence
Replies: 22
Views: 5767

Why not make sure that any rejected records trigger a warning. Start both jobs in a sequence but make the second one dependant upon the first one not generating warnings.
by ArndW
Tue Aug 21, 2007 11:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic to split a column 100 characters long into 4 chunks...
Replies: 8
Views: 1879

guarav - the original post states that words cannot be split, which is what doing a straight substring extraction would do.
by ArndW
Tue Aug 21, 2007 11:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: REJECTED keyword in PX
Replies: 8
Views: 1666

"REJECTED" verb or word? In which stage? There is a 'Rejected' attribute for output links on databse writes, but I'm not sure if this is what you mean as it doesn't exist in server jobs.
by ArndW
Tue Aug 21, 2007 10:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic to split a column 100 characters long into 4 chunks...
Replies: 8
Views: 1879

Code: Select all

INDEX(In.Col[1,35],' ',DCOUNT(In.Col[1,35],' ')-1)
will give the position of the last space before position 35. Assign from position 1 to this number to the first output string, then repeat (in stage variables) for the following 3.
by ArndW
Tue Aug 21, 2007 9:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: for loop
Replies: 5
Views: 1156

The stage variable and constraint method is identical in PX transformers, so you can do it exactly as you would in Server jobs.
by ArndW
Tue Aug 21, 2007 8:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: for loop
Replies: 5
Views: 1156

The FOR-NEXT loop is not available in Server transform stages.

Please explain what you are trying to loop in a stage and someone might be able to think of a way to do this.
by ArndW
Tue Aug 21, 2007 8:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while loading data
Replies: 6
Views: 1380

I can't recall where the location defaults to, it will be either in the project directory or under the Oracle dir. I'd simply use the UNIX find command to locate it.
by ArndW
Tue Aug 21, 2007 7:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings - Severity
Replies: 2
Views: 669

Yes, you should make sure that no job goes into production with warnings. This applies to both Server and PX jobs. Some PX warnings cannot be removed in the job design, so they should be demoted to informational by message handlers at runtime. This ensures that any real warnings are detected in prod...
by ArndW
Tue Aug 21, 2007 6:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Joiner Stage Warning - PX
Replies: 3
Views: 1286

Re: Joiner Stage Warning - PX

sparth wrote:...Disable RCP in DataStage administrator...

I'm not sure if that is sufficient for existing jobs. Go into the stages leading into the join stage and on their output column pages explicitly turn off RCP.
by ArndW
Tue Aug 21, 2007 6:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wait for file on a diff server
Replies: 13
Views: 1944

g_rkrish - if you have an NFS mount all you need to do is the wait-for-file activity. no more, no less. No need for ftp or rcp or an rsh.
by ArndW
Tue Aug 21, 2007 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wait for file on a diff server
Replies: 13
Views: 1944

An NFS mount will look like a local directory, i.e. it will have a path starting at your local root directory - for instance '/usr/arndw/mounts/NSApasswordDirectory' could be a remote mount
by ArndW
Tue Aug 21, 2007 4:14 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: hai
Replies: 7
Views: 3532

Ray - I missed that that it was the first post. Mah - I'm sorry sorry about being so harsh, but the FAQs that are recommended reading plus many other posts from members here recommend using descriptive subject lines and posting in the appropriate forums. Plus, the use of the recommended search funct...
by ArndW
Tue Aug 21, 2007 4:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to handle French Accent characters with CFF component?
Replies: 7
Views: 9237

Right, do not use the DS FTP stage if you aren't converting the file line-by-line. Since it seems you've already used FTP I would stay with that approach; use the EBCDIC() function on the COMP-3 columns to reconvert them to their original binary image and then use the sdk kit routines to make them i...
by ArndW
Tue Aug 21, 2007 4:06 pm
Forum: General
Topic: Documentation for Serverr to PX edition?
Replies: 3
Views: 1309

Even though the job types look similar on the Designer canvas and contain many shared stage types you need to realize that they are based on completely different technologies and that an efficient approach on one job type will not necessarily be efficient in another. Server jobs do most of their wor...