Search found 53125 matches

by ray.wurlod
Sun May 25, 2008 4:04 pm
Forum: General
Topic: ./uv -admin -clearsockets not working on v8 ?
Replies: 15
Views: 5840

I have a vague memory that the tcp times reported by ndd are in microseconds (rather than milliseconds), but would be happy to be corrected.
by ray.wurlod
Sat May 24, 2008 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to release a locked job thro datastage admin
Replies: 2
Views: 1246

Whilst what you ask can be done, it's unlikely we can provide an exact solution because we don't know enough about precisely what is locked. But rather than await interminable correspondence on this thread, why not Search DSXchange. You will need LIST.READU to determine the owner of the lock, and UN...
by ray.wurlod
Sat May 24, 2008 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting first n bytes and last n bytes from a binary file
Replies: 2
Views: 885

You could use a server routine, using ReadBlk and WriteBlk statements (which read/write blocks of N bytes) as well as the Status statement that can give things like the total size of the file. That the file is EBCDIC is neither here nor there when you are processing bytes.
by ray.wurlod
Fri May 23, 2008 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion error
Replies: 3
Views: 1140

DataStage is a bit brain dead on this one - it reports the alert whenever there's a mismatch, even where the target is larger than the source. Use a message handler to demote it to informational. Or force your metadata to match, perhaps via a Copy or Modify stage.
by ray.wurlod
Fri May 23, 2008 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: executing Orch admin
Replies: 6
Views: 2601

You also need to set PATH to include ${PXHOME}/bin or to specify the full pathname of the orchadmin command.
by ray.wurlod
Fri May 23, 2008 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing parameters to a nested loop
Replies: 6
Views: 2356

Yes, but done differently. In a server job use a Filter command cat file1 file2 in the Sequential File stage - the stage reads stdout of the cat command.
by ray.wurlod
Fri May 23, 2008 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_DUMP_SCORE?
Replies: 3
Views: 1529

That's not how it works, folks. Irrespective of the degree of parallelism you only get one data set between each pair of operators. Remember that the Score is distributed separately to the section leader process on each node. What you need to look at here is the fact that DataStage has inserted some...
by ray.wurlod
Fri May 23, 2008 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Command for scheduling
Replies: 11
Views: 2230

The original poster has removed the original questions and all his/her responses. It is not clear why.
by ray.wurlod
Fri May 23, 2008 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving Job name in error
Replies: 13
Views: 3358

From memory (once again I am in an airport lounge) the Exception Handler has a couple of activity variables accessible downstream of it, one of which identifies the failed activity that was caught.
by ray.wurlod
Fri May 23, 2008 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: slow performance while merging 2 files in merge stage
Replies: 13
Views: 3582

Are you tracing a stage or debugging in the slow job and not in the fast job?
by ray.wurlod
Fri May 23, 2008 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project creation
Replies: 3
Views: 1409

Not in DS.AUDIT, but in field #7 of UV.ACCOUNT record for the project. Also (from memory) in the UV_SCHEMA record for the project.
by ray.wurlod
Fri May 23, 2008 3:24 pm
Forum: General
Topic: DB2 to IMS
Replies: 3
Views: 748

DataStage *can* work with IMS datasets and viewsets. But you will need to use a "mainframe" job (extra cost) to do so. As the name suggests, a mainframe job runs on the mainframe - DataStage generates COBOL source plus JCL to compile and run the same.
by ray.wurlod
Fri May 23, 2008 3:22 pm
Forum: General
Topic: java class not found
Replies: 1
Views: 1110

Welcome aboard.

Is this XP Pro or XP Home? The installer *should* take care of setting CLASSPATH but, it seems, has not done so in your case.
by ray.wurlod
Fri May 23, 2008 3:20 pm
Forum: General
Topic: Unable to login to dataStage Director
Replies: 3
Views: 1360

What EXACT version of DataStage client? (You can find out from Help > About.)
by ray.wurlod
Fri May 23, 2008 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Crazy Transformer error. Any help is greatly appreciated
Replies: 2
Views: 1059

Through your support provider, probably the folks who sold DataStage to you. The variable names localVarxxx are generated names in the code, and should not have ^A (presumably Ctrl-A) instead of a. Ctrl-@ is one way to represent NUL (0x00); it's not clear from what you posted where this is occurring...