Search found 15603 matches

by ArndW
Wed Mar 05, 2008 4:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file text binary (unix to ZOS)
Replies: 10
Views: 7029

Ummm, since you have COMP-3 you must transfer in binary, otherwise the data is corrupted.
by ArndW
Wed Mar 05, 2008 4:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading input from a sequential file
Replies: 6
Views: 1748

You will need one process to determine the correct file to use, then passing that value to the DataStage job that reads the file. There are many ways of getting the "latest" file; it depends if you do it by date-time created/modified or by the name. This would be a single UNIX statement, i.e. "ls /t...
by ArndW
Wed Mar 05, 2008 4:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Reading
Replies: 9
Views: 2917

Usually you can install UNIX commands with MKS Toolkit or a similar product. In your case just fool DataStage and, in the sequential stage, state "File has column headers" so the first line is skipped.
by ArndW
Wed Mar 05, 2008 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: certification
Replies: 2
Views: 799

There is no Server certification and currently 3 certifications for PX/EE

1. Enterprise Edition
2. QualityStage
3. Information Analyzer V8
by ArndW
Wed Mar 05, 2008 3:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to refresh a lookup table after every iteration
Replies: 4
Views: 1246

No, the only way to do this is to use sparse lookups and no buffering of output.
by ArndW
Wed Mar 05, 2008 3:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while File Set creation
Replies: 14
Views: 6521

I just tested it and the demote works. I'm at V8 so my message-id is "IIS-DSEE-TOIX-00031" but I've used the message handling so much at V7.x that I know it works correctly.
You need to re-run the job after adding the handler for it to take effect.
by ArndW
Wed Mar 05, 2008 3:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset is not creating when job aborts
Replies: 7
Views: 1499

Using that approach you could turn buffering off for the DataSet stage and get more records, but you cannot guarantee that no data loss will occur. The "Unit of Work" MQ stage will do that for you, or if you do a 2-phase MQ read with transactions, doing a non-destructive read in one job to a table o...
by ArndW
Wed Mar 05, 2008 3:24 am
Forum: General
Topic: initial project creation fails, creates javacore .txt file
Replies: 7
Views: 4054

danc - if it is any consolation, I recently had similar issues with installing V8 but in my case the "test" project was created successfully but no others could be added. After running a number of diagnostics with IBM support and trying to localize the cause the problem suddenly disappeared and none...
by ArndW
Wed Mar 05, 2008 3:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ Connector- Selective reading- Aborted with error
Replies: 8
Views: 4965

In addition to Ernie's suggestions also turn off waves and see if the error behaviour changes.
by ArndW
Wed Mar 05, 2008 3:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source table structure keep on changing
Replies: 5
Views: 1545

DataStage will not automatically inherit metadata from changed tables. In many cases where Oracle will do implicit conversions you can change datatypes, but missing or new columns are not detected in DataStage.
by ArndW
Wed Mar 05, 2008 3:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: config db2 server and Datastage EE on IBM AIX
Replies: 18
Views: 4796

LIBPATH=`dirname $DSHOME`/branded_odbc/lib:$DSHOME/lib:$DSHOME/uvdlls:$DSHOME/java/jre/bin/classic:$DSHOME/java/jre/bin:$LIBPATH export LIBPATH/bin:$LIBPATH:$INSTHOME/sqllib/lib; That doesn't look like a valid export command line at all! LIBPATH=`dirname $DSHOME`/branded_odbc/lib:$DSHOME/lib:$DSHOM...
by ArndW
Tue Mar 04, 2008 11:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: warning in sort stage
Replies: 2
Views: 590

It would seem that you have a "/n" in your string! Put a transform stage to create a column with the derivation "LEN(In.PROCESS_DATE) and display in a peek stage. Is the length 8 or 9?
by ArndW
Tue Mar 04, 2008 11:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Jobs not compiling/running
Replies: 3
Views: 961

Sounds like it is time to contact your support provider. Have you tried to create and compile a job with a transform stage as well? Does "View Data" on a sequential file work?
by ArndW
Tue Mar 04, 2008 11:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String To Timestamp
Replies: 6
Views: 1137

99% likely because your explicit (or implicit) mask starts off with %dd/%mm!
by ArndW
Tue Mar 04, 2008 11:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Chinese characters sent via IDOC Load Stage not displaying p
Replies: 2
Views: 1332

NLS and conversions are source of constant trouble in DataStage. If you don't have NLS then you will not have to worry about conversions, since characters coming in are not parsed as if they were multibyte but are just passed through. In your case the output in SAP seems to be correct, but you haven...