Search found 53125 matches

by ray.wurlod
Wed Mar 14, 2007 6:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I'm working getting an error, its about VOC file, help neede
Replies: 2
Views: 1302

The message about the VOC indicates that the hashed file has not been properly deleted. Again, this has been addressed before. Search the forum for DELETE.FILE command.
by ray.wurlod
Wed Mar 14, 2007 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Crashing
Replies: 9
Views: 3195

Have you re-booted one of the PCs to clear any scrambled DLL/OCX files from memory? What is the exact version of DataStage (use the Help menu, About topic to find out)?
by ray.wurlod
Wed Mar 14, 2007 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find out which user deleted a particular job?
Replies: 7
Views: 2343

DS_AUDIT does record the most recent time that an object was deleted, and by whom. Of course, if everyone logs in using the same user ID, that's not much help, though you can establish the time. LIST.DICT DS_AUDIT to get the column names for your query - from memory you need LAST.DELETED and DELETOR...
by ray.wurlod
Wed Mar 14, 2007 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is JOBCONTROL.H file?and where this file available?
Replies: 3
Views: 3123

When's the interview?
by ray.wurlod
Tue Mar 13, 2007 8:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call DSGetLinkInfo from a trigger
Replies: 19
Views: 7422

Merely addressing guruji's stated uncertainty.
by ray.wurlod
Tue Mar 13, 2007 8:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Understanding DataStage configuration files.
Replies: 3
Views: 2103

Since SMP environment is "share everything" pools don't really help all that much. You're right about the processing nodes. It is not actually necessary to have any pools, node or disk.
by ray.wurlod
Tue Mar 13, 2007 8:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading the Multiple XML file names
Replies: 2
Views: 780

A job sequence with a "list of things" loop. Execute Command activity to initiate FTP script then Job activity to process the file.
by ray.wurlod
Tue Mar 13, 2007 6:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: special characters in column names
Replies: 1
Views: 595

There is a specific section in the Parallel Job Developer's Guide (page 12-6)
by ray.wurlod
Tue Mar 13, 2007 6:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: InvocationId in Job control
Replies: 4
Views: 1575

If you want to run them in parallel, simply emplace five job activities using five different invocation IDs in the job names. No job parameters are needed for this. The jobs can each pick up their invocation ID via the DataStage macro.
by ray.wurlod
Tue Mar 13, 2007 6:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic for Lookup
Replies: 8
Views: 1403

You might do well to include a Column Export stage on the reference input link to the Lookup stage, so that the 200 columns become one.

Subsequently you can parse this with the Field() function as was suggested.
by ray.wurlod
Tue Mar 13, 2007 5:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: trim trailing characters
Replies: 7
Views: 1089

Probably. Write it yourself in C, just to prove the point.
by ray.wurlod
Tue Mar 13, 2007 5:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call DSGetLinkInfo from a trigger
Replies: 19
Views: 7422

That original idea simply won't work, because DSJ.ME in a job sequence refers to the job sequence, and the job sequence "links" do not carry rows - they merely indicate a dependency. You need to create your own interlude routine that can be given the name of the job, stage and link from which to ret...
by ray.wurlod
Tue Mar 13, 2007 5:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-Defined Sql in Target Stage
Replies: 25
Views: 5484

Sounds like you can mark the post as resolved, then?
by ray.wurlod
Tue Mar 13, 2007 5:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading using FTP Stage - Need to improve performance
Replies: 8
Views: 2164

PUSH the file (in binary mode) from the mainframe, rather than pulling it from the DataStage server. Use the CFF stage to read it.
by ray.wurlod
Tue Mar 13, 2007 5:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How does Server Edition Utilize Multiple Processors?
Replies: 2
Views: 973

You don't even need IPC to use multiple CPUs. For starters, any Transformer stage runs in a separate process from its parent job (running DSD.StageRun rather than DSD.RUN - you can see these in a listing of processes). Secondly, if you have multiple paths through the job, or even Transformer stages ...