Search found 53125 matches

by ray.wurlod
Wed Feb 21, 2007 10:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file stage:
Replies: 5
Views: 1945

Is this a server job (as marked) or a parallel job (as posted)? The APT... environment variables will have no effect whatsoever on a server job.

Have you tried using 000 as the field delimiter and as the record delimiter?
by ray.wurlod
Wed Feb 21, 2007 5:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: After-job subroutine does not work
Replies: 19
Views: 3586

Post your subroutine code.

An after-anything subroutine does not have the direct ability to return values. How did you want to use this value?
by ray.wurlod
Wed Feb 21, 2007 5:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to DB2 on AS400
Replies: 5
Views: 1020

Use the DB2/UDB API stage. DRS adds another layer of software that you don't need unless you require the flexibility to use other database types. For now, the DB2 Enterprise stage does not connect to DB2/400. Since the DB2/UDB API stage invokes DB2 Client software, you will need to have this install...
by ray.wurlod
Wed Feb 21, 2007 5:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datamodel
Replies: 2
Views: 1021

There are those who advocate bolting a star schema logical design onto a third-normal-form (3NF) physical design. These are mainly vendors of 3NF database products who don't have a good star schema story.

Teradata is an interesting and performant hybrid.
by ray.wurlod
Wed Feb 21, 2007 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: odbc stage
Replies: 3
Views: 1385

Indeed it's one of the lab exercises you do in the IBM DataStage Essentials (server edition) class. So, please verify the details as DSguru2B requested, also verify that you have sufficient privilege to create tables in the data source to which you are connecting. Are there any error/warning message...
by ray.wurlod
Wed Feb 21, 2007 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2/UDB API Reject Link
Replies: 5
Views: 1216

In a parallel job?!! Good trick!
:roll:
by ray.wurlod
Wed Feb 21, 2007 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Function @NULL
Replies: 3
Views: 1193

@NULL is a BASIC system variable. It can be used in server jobs and in BASIC Transformer stages and in expressions in job sequences. It can not be used in parallel Transformer stages. As noted, use SetNull().
by ray.wurlod
Wed Feb 21, 2007 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2/UDB API Reject Link
Replies: 5
Views: 1216

In parallel jobs it's not done in the Transformer stage. DB2 rejects are captured by a reject link on the DB2 stage. However, better practice is to detect the duplicates upstream. The easiest way is a Sort stage that generates a Key Change column. The second easiest way is to use stage variables in ...
by ray.wurlod
Wed Feb 21, 2007 2:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: $APT_CONFIG_FILE
Replies: 4
Views: 2358

The pathname specified by the APT_CONFIG_FILE environment variable, wherever it is set, will be used to specify the configuration file with which a parallel job is run.
by ray.wurlod
Wed Feb 21, 2007 2:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: pass parameter to the row generator from run time
Replies: 1
Views: 1634

In the Generator property use the job parameter as the initial value.
by ray.wurlod
Wed Feb 21, 2007 1:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Warning
Replies: 6
Views: 1605

"Warning" in DataStage logs can mean either "trouble" or "unusual". In this case, the creation of the SDKSequences hashed file is an unusual event; it only ever occurs once in a project.
by ray.wurlod
Wed Feb 21, 2007 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Empty Debug window
Replies: 8
Views: 3397

This sugestion's a little bit "left field" but give it a try anyway. Set your breakpoints, then recompile immediately before starting the job in the debugger.
by ray.wurlod
Wed Feb 21, 2007 4:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to eliminate the thicked pipeline |
Replies: 30
Views: 6625

Put in a Peek stage and use it to grab a sample of rows into a file. Then use a hex editor to find out the ASCII code of the character in question.
by ray.wurlod
Wed Feb 21, 2007 4:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Empty Debug window
Replies: 8
Views: 3397

Welcome aboard. :D

You really haven't given enough information. Presumably the status of the job is running and the debugger is paused at a breakpoint? What stages are on either end of the link where the breakpoint is defined?
by ray.wurlod
Wed Feb 21, 2007 4:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage job not started but it is showing running state
Replies: 10
Views: 4033

Is there a DSD.RUN process on the server associated with this job? If not, does clearing the job's status file return it to a known status? You may then want to put some diagnostic routines in as before/after subroutines to see how far the job gets.