Search found 23 matches

by Ed Purcell
Mon Jun 18, 2007 10:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Use of Server routines in Parallel Jobs
Replies: 13
Views: 5864

Re: Use of Server routines in Parallel Jobs

If you are gathering information about a parallel job after it has run, you can invoke a BASIC routine in 7.x as an After Job Routine in a parallel job, because once the job is finished it is no longer running in parallel. That After Job Routine still has access to the job's handle, so it can procee...
by Ed Purcell
Tue Jun 12, 2007 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pattern matching
Replies: 3
Views: 1413

Do you mean the File Pattern option of an input sequential stage in Enterprise Edition?
by Ed Purcell
Wed Jun 06, 2007 12:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: julian to timestamp
Replies: 6
Views: 2309

OK, so what should we do if the Julian date comes in as a character string, say, "2007128"?
by Ed Purcell
Mon May 14, 2007 12:26 pm
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14957

or you could use wildcards if your file names are amenable) Ray, I recently found that I couldn't use wildcards in the filter command. Craig also found the same issue. Do you know that it can be done? Is there some specific syntax to get it to work? Or is it just not working in our versions of DS. ...
by Ed Purcell
Wed Apr 04, 2007 6:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Pattern for Sequential File Stage
Replies: 7
Views: 3373

Whoops! When I specify a file pattern for the output source and then enter something like ABC* for the file pattern, the sequential stage reads in the multiple files just fine, but the File Name Column reports the file name as ABC*. I was hoping that it would give it as ABCRestOfFileName. Any sugges...
by Ed Purcell
Tue Apr 03, 2007 10:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Pattern for Sequential File Stage
Replies: 7
Views: 3373

Thanks, I see it now. "File Name Column" is an option on the sequential file stage.

Ed
by Ed Purcell
Mon Apr 02, 2007 6:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Pattern for Sequential File Stage
Replies: 7
Views: 3373

File Pattern for Sequential File Stage

If I specify a File Pattern for the source on the output tab of a sequential file stage (and pull in data from multiple files) is there any way to know the name of the file that is coming in as each record is read in?
by Ed Purcell
Thu Feb 01, 2007 2:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: COBOL COPY BOOK
Replies: 16
Views: 4265

Hi The "bug" is on your level 01. It's the name of the record and cannot be dimensionned. You had 01 BDIPDATA-RECORD PIC X(97). 05 BDIPDATA-RECORD-ID PIC X(03). 05 BDIPDATA-RECORD-DATA PIC X(93). 05 BDIPDATA-RECORD-DELIMITER-X PIC X(01). You can say 01 My Record 03 BDIPDATA-RECORD PIC X(9...