Search found 53125 matches

by ray.wurlod
Thu Aug 02, 2007 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Internal Communications error
Replies: 7
Views: 2988

Is there a subdirectory called "pipe" in your project?
by ray.wurlod
Thu Aug 02, 2007 6:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Does Datastage PX Support
Replies: 3
Views: 1141

Webservice wasn't mentioned in the original question.

I did not suggest using a shell script as a wrapper to the job - I suggested using a shell script to execute sqlplus to call the stored procedures from DataStage. This should still be a valid approach in an SOA environment.
by ray.wurlod
Thu Aug 02, 2007 6:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: accessing zip files
Replies: 15
Views: 3767

OP is on Windows, but maybe has MKS Toolkit or similar.

On Windows open a cmd shell and invoke ftp. When the ftp> prompt appears type in a single ? or the word help to get a list of help topics.
by ray.wurlod
Thu Aug 02, 2007 5:57 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Wrapper for ETL Webservices
Replies: 10
Views: 8716

1) DataStage jobs exposed as web services don't need any wrapper.
2) See previous answer.
3) Typically you set up the DataStage job to receive and return small XML documents when exposing it as a web service.
by ray.wurlod
Thu Aug 02, 2007 1:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Low Value Handling
Replies: 8
Views: 1934

I think Arnd means Seq() rather than Char(). Is Seq() available in parallel jobs?
by ray.wurlod
Thu Aug 02, 2007 12:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Does Datastage PX Support
Replies: 3
Views: 1141

Set up a shell script to invoke sqlplus (search the forum for techniques). You can then invoke this script from the master control job sequence or from any other job sequence (via an Execute Command activity) or even from a before-job subroutine invoking ExecSH.
by ray.wurlod
Wed Aug 01, 2007 11:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UNIX command output not captured using RoutineActivityStage
Replies: 10
Views: 4455

It was always being captured. You just weren't looking at it all.
by ray.wurlod
Wed Aug 01, 2007 11:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: accessing zip files
Replies: 15
Views: 3767

You can capture the result of the ls command using backquotes, and use that as the first argument of the mv command that renames (or copies) the file prior to its being transferred.
by ray.wurlod
Wed Aug 01, 2007 11:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP XML File to
Replies: 4
Views: 1872

Learn FTP.
by ray.wurlod
Wed Aug 01, 2007 11:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Description for max date
Replies: 1
Views: 862

More stage variables! You might also consider pre-loading a hashed file with the Max Date for each Number to make the comparison easier.
by ray.wurlod
Wed Aug 01, 2007 11:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup Vs Join
Replies: 1
Views: 984

It would depend upon how you implemented the lookups, information that you have chosen not to provide. It is possible to achieve the same results with lookup as with join, provided that certain conditions are met.
by ray.wurlod
Wed Aug 01, 2007 3:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IsValid and StringToDate
Replies: 8
Views: 8474

The date format string must match the date format.
"%yyyy-%mm-%dd" matches "1995-03-01" but does not match "19950301".
"%yyyy%mm%dd" matches "19950301" but does not match "1995-03-01".
by ray.wurlod
Wed Aug 01, 2007 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage V8.0 users and roles
Replies: 1
Views: 872

The first three roles correspond exactly with their pre-8.0 counterparts. Roles are associated with operating system groups pre-8.0, not with user IDs. UNIX user ID's are completely irrelevant apart from logging in to the server; it's all managed through IIS user IDs in version 8.0. Super operator c...
by ray.wurlod
Wed Aug 01, 2007 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP and Renaming files
Replies: 5
Views: 1348

Is the rename command correct? What message (if any) is returned and logged from it? Would you consider using some other form of remote execution?