Search found 15603 matches

by ArndW
Wed Jul 25, 2007 7:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Archiving DataStage PX DataSets
Replies: 6
Views: 3937

Use the orchadmin cp command from UNIX to copy datasets. By using a new APT_CONFIG file you can also change the location (and amount) of data files.
by ArndW
Wed Jul 25, 2007 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum Number of Lookups in single transformer
Replies: 4
Views: 1098

There is no particular reason for '7' references. What I will do with a particularly complex transform stage on a multi-cpu system is monitor the %CPU of that tranform stage. If it is close to 100% then the job can be made somewhat faster by splitting into 2 transforms stages (assuming interprocess ...
by ArndW
Wed Jul 25, 2007 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records Getting dropped
Replies: 9
Views: 1802

If your are not using that column in a constraint or in a stage variable and you are certain that each use in a derivation is handled as you have described then you have discovered a bug.
by ArndW
Wed Jul 25, 2007 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export XML
Replies: 9
Views: 2356

I played around earlier at work and couldn't find a way to do it. You might try to take a look at the dscmdexport.exe in your favorite binary editor and find the constants section and search that for a possible command line option for xml. Failing that, I'd go through your support provider and see i...
by ArndW
Wed Jul 25, 2007 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records Getting dropped
Replies: 9
Views: 1802

I've gotten this error before when I was certain that I'd dealt with nullability in all occurrences of the column in the transform stage... then I discovered that I'd used the column in a constraint. Perhaps you might have the same problem.
by ArndW
Wed Jul 25, 2007 1:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling multiple commands inside FilterCommand in Seq File?
Replies: 15
Views: 5653

The filter needs a data stream (stdin) to work with. I'm not at DS session now to check, but it should work with "gunzip -" or, failing that, use an external command stage to perform the compression or decompression.
by ArndW
Wed Jul 25, 2007 1:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert 'YYYY-MM-DD hh:nn:ss' format to 'YYYY-MON-DD' in PX
Replies: 10
Views: 5179

I don't know if that is what the poster wanted, but I didn't realize that PX would supply the 3 digit month acronyms {I wonder if PX handles locales as well...}
by ArndW
Wed Jul 25, 2007 1:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert 'YYYY-MM-DD hh:nn:ss' format to 'YYYY-MON-DD' in PX
Replies: 10
Views: 5179

No, there is no single function call which will do this, which is why Maveric proposed his solution. You can get the month number then do a single

Code: Select all

FIELD('JAN,FEB,MAR,APR,MAY,JUN,JUL,AUG,SEP,OCT,NOV,DEC',',',{month number})
to get the month string.
by ArndW
Wed Jul 25, 2007 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to open project - Status code 81015
Replies: 13
Views: 6566

I would recommend stopping and starting DataStage.
Do you have multiple engines running on the same machine (i.e. connecting to client via a port number)?
by ArndW
Tue Jul 24, 2007 11:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to open project - Status code 81015
Replies: 13
Views: 6566

Are you running jobs using the same user id from the Director and from the command line? Also, do you have several projects and if so, please try to see if you can use the dsjob command to list the jobs in another project on the same machine.
by ArndW
Tue Jul 24, 2007 11:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to open project - Status code 81015
Replies: 13
Views: 6566

That is quite strange. And can you start jobs from the director as well? Is the system very slow and have you tried stopping and starting DataStage?
by ArndW
Tue Jul 24, 2007 10:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to open project - Status code 81015
Replies: 13
Views: 6566

Referring to my original post - have you set your user environment correctly? go to $DSHOME and issue a '. ./dsenv' and if you haven't included the dsjob in your path it can be executed in $DSHOME/bin/dsjob
by ArndW
Tue Jul 24, 2007 10:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to open project - Status code 81015
Replies: 13
Views: 6566

And the 2nd part of the question?
by ArndW
Tue Jul 24, 2007 10:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pick up new files only
Replies: 6
Views: 1399

Gomez - you will need to produce some code to do this logic. There are many different ways in which people have done this. If you can modify the files in that directory once you have picked them up (i.e. chmod to remove read access) you can use simple UNIX commands to select only those with appropri...
by ArndW
Tue Jul 24, 2007 10:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Saving xls in Pipe delimited format
Replies: 4
Views: 3611

If you do a "save as csv" in Excel you will get a comma separated file, and any columns that contain embedded commas will be double-quoted; so you will get a well-formed CSV file. You can read that in DataStage without a problem. Could you explain ...I tried to change the ',' in the file to "|" but ...