Search found 53125 matches

by ray.wurlod
Fri Mar 23, 2007 5:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: $INCLUDE DSU_BP <name of job>.B
Replies: 2
Views: 1051

There's a sub-directory called DSU_BP in your project on the server. It is used when compiling routines. It is a suitable default location for header files that need to be included in your routines. Header files usually have a ".H" suffix, or occasionally ".INS". Craig is correct that ".B" implies (...
by ray.wurlod
Fri Mar 23, 2007 5:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: De-Duplication of Invoice data
Replies: 9
Views: 3436

Why not just extract the blocking information from QualityStage? One extra column. Anything with XA or RA is an original, anything with DA is a duplicate. The work has already been done for you!
by ray.wurlod
Fri Mar 23, 2007 5:25 pm
Forum: General
Topic: Implementing business rules
Replies: 3
Views: 1065

When they're this complex the usual recommendation is to move the logic into one or more routines that are called from the Transformer stage. Some years back I implemented such a scheme, using late binding of the business rules routines - the actual routine executed was not determined until the valu...
by ray.wurlod
Fri Mar 23, 2007 5:21 pm
Forum: General
Topic: Parameterizing output of Job
Replies: 9
Views: 2872

First job selects date from Oracle and loads it into that job's user status area. Job sequence accesses first job's user status area using the activity variable $UserStatus, in the definition of the second job's job parameter. Type in to that field FirstJob.$UserStatus, where FirstJob is the name of...
by ray.wurlod
Fri Mar 23, 2007 5:12 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Unable to create repository connection
Replies: 5
Views: 2456

:? also
by ray.wurlod
Fri Mar 23, 2007 6:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: query based on conditon???
Replies: 19
Views: 3382

Code: Select all

      ----->  DB2 (update only)
               :
               : (reject)
               :
               V
              DB2 (insert or update)
by ray.wurlod
Fri Mar 23, 2007 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question and errors,Oracle 10 g datastage 7.5.2
Replies: 4
Views: 3962

If you have Enterprise Edition (parallel jobs) - which I assume you have because you posted in this particular forum - then try importing using the Orchestrate orchdbutil facility. It's the most accurate.
by ray.wurlod
Fri Mar 23, 2007 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: count rows in a sequential file
Replies: 7
Views: 4868

Clever. Resolved?
by ray.wurlod
Fri Mar 23, 2007 6:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ULIMIT uvconfig
Replies: 11
Views: 4513

Search the forum for examples on how to use RESIZE on existing hashed files.
by ray.wurlod
Fri Mar 23, 2007 6:50 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Unable to create repository connection
Replies: 5
Views: 2456

Have you created an ODBC DSN for your PSDB?
by ray.wurlod
Fri Mar 23, 2007 5:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Do not checkpoint null
Replies: 3
Views: 997

If you execute a job sequence with automatic restart, jobs that complete successfully record a checkpoint. Should not all the activities in the sequence finish successfully, restarting the sequence will skip any checkpointed activities. An entry will be logged indicating that they are being skipped....
by ray.wurlod
Fri Mar 23, 2007 5:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ULIMIT uvconfig
Replies: 11
Views: 4513

Only the UNIX administrator can set it to unlimited.
Upper limit on hashed file size is affected by internal addressing; change to 64-bit to go beyond 2GB limit.
by ray.wurlod
Fri Mar 23, 2007 5:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: count rows in a sequential file
Replies: 7
Views: 4868

:roll: Didn't realize that Windows has a wc command, or that server jobs have an External Source stage. I suspect that neither is true.
by ray.wurlod
Fri Mar 23, 2007 5:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ULIMIT uvconfig
Replies: 11
Views: 4513

Have your UNIX administrator set ulimit for file size to unlimited. That's the only restriction on how large a file DataStage can create.

Hashed files, however, have a 2GB limitation by default, which can be overridden by using 64-bit addressing rather than 32-bit addressing.
by ray.wurlod
Fri Mar 23, 2007 5:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ULIMIT uvconfig
Replies: 11
Views: 4513

As noted, the value of ULIMIT in uvconfig is typically ignored these days. It will only be effective if set higher than the UNIX ulimit setting. It is not dangerous.