Search found 53125 matches

by ray.wurlod
Sat Oct 25, 2003 1:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Time Stamp
Replies: 8
Views: 1467

RecordLockU and ReadU

Kim, You missed the point. The RecordLockU statement in my code locks the new record ID, the one that I'm about to create. The ReadU statement locks the old record ID, the one that I'm about to delete. RecordLockU is to be preferred to ReadU in this case because it does not generate any I/O to deter...
by ray.wurlod
Sat Oct 25, 2003 1:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Taking DataStage jobs and running them in MPP environment
Replies: 6
Views: 3578

The answer changes to yes at DS 7.0! :)
Although the manual specifies no for MPP at release 6.x, at least one person at Ascential claims to have it working, in another thread in this forum.
by ray.wurlod
Thu Oct 23, 2003 8:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RPC Daemon not running(81016)
Replies: 3
Views: 4914

Sometimes just the DS RPC service fails to start.
You can stop and start the individual services by choosing the Services applet within Control Panel (you may need to drill down into Administrative Tools to find it - its icon is a pair of meshed cog wheels).
by ray.wurlod
Thu Oct 23, 2003 8:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Time Stamp
Replies: 8
Views: 1467

The RecordLockU is on the yet-to-be-created record.
The ReadU is on the existing record.

LOCKED clauses were deliberately omitted, as noted in my post.
by ray.wurlod
Thu Oct 23, 2003 5:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem Loading into Oracle NLS
Replies: 8
Views: 1615

Make sure that the NLS map you use in DataStage, the language environment variable(s) you use in the Oracle client setup and, possibly, the LANG environment variable, all coincide (or, at least, are compatible).
by ray.wurlod
Thu Oct 23, 2003 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Basic
Replies: 7
Views: 2365

LOCATE is fine up to a point, and better if the searchable array is kept sorted. But for very large lists (say more than about 100KB's worth), a hashed file of the (upper-cased) words, and Upcase(SearchWord) as the reference key expression, will be even more efficient.
by ray.wurlod
Thu Oct 23, 2003 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Time Stamp
Replies: 8
Views: 1467

There are quite a few ways, probably the easiest is to do it in code (either a before/after subroutine or a job control routine). You could also do it using a Folder stage. To generate the date there are again many options (look in the Routines and Transforms, particularly the SDK). However, ultimat...
by ray.wurlod
Thu Oct 23, 2003 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Extender
Replies: 2
Views: 3156

This is answered in the Parallel Extender forum on this site. In short, it seems that your C++ compiler is either missing or cannot be found.
by ray.wurlod
Tue Oct 21, 2003 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple sql in uv stage
Replies: 3
Views: 1236

Here's another approach, provided there are no job parameters in the SQL. Execute both/all SQL statements from your Administrator client Command window. Then select them and Save. (The selected SQL statements will be saved as a "paragraph" in the VOC file of the project. You will be prompted for the...
by ray.wurlod
Mon Oct 20, 2003 8:38 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: DataStage TX
Replies: 17
Views: 9634

Re: DataStage TX

Formally known as "Mercator Inside Integrator 6.7", DataStage TX enables high-volume, complex transactions without the need for additional coding. If you guys think you need to learn DataStage TX does that mean I'll have to get familiar with the other DataStage products? Jan I think it's more that ...
by ray.wurlod
Sun Oct 19, 2003 11:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Encryption/Decryption in Server/parallel
Replies: 3
Views: 2985

DataStage does not expose the encyption algorithm it uses for encrypted parameters. Nor does it provide any inbuilt encryption functionality. You have to add your own. You can access this by various means, such as a Routine invoking a C function. None of the means is straightforward, which is only t...
by ray.wurlod
Sun Oct 19, 2003 11:12 pm
Forum: IBM QualityStage
Topic: Qualitystage client\server testing
Replies: 3
Views: 3206

In INTEGRITY you must use Stage only when first using a project. That is, it's not automatic. After that it's OK to Stage and Run. Haven't installed QS7 yet, but can't imagine it's much different on this.
by ray.wurlod
Sun Oct 19, 2003 12:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use Pivot Stage and receive Ora 1002 error
Replies: 10
Views: 4115

There's nothing I know of in the Pivot stage itself. After all, the purpose of the stage is to pivot, not to constrain. That would be a much more complex design (of the stage)!
by ray.wurlod
Sun Oct 19, 2003 12:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unix Security and Job Compilation
Replies: 16
Views: 3489

(singing) It ain't necessarily so!
by ray.wurlod
Fri Oct 17, 2003 8:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use Pivot Stage and receive Ora 1002 error
Replies: 10
Views: 4115

Can you do the same task using text files as source? This will isolate whether it's in the Pivot stage or not. If nothing else it will convince you that the Pivot stage works OK! :)