Search found 53125 matches

by ray.wurlod
Thu Oct 12, 2006 2:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot Delete a File
Replies: 3
Views: 974

Can you see/open the particular job in Designer, Manager, Director? If so, you should be able to delete it (once closed) from the GUI. Otherwise, you will need to delete references to it from DS_JOBS and DS_JOBOBJECTS using SQL, and to remove the repository tables using recursive rm commands. Make s...
by ray.wurlod
Thu Oct 12, 2006 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OCONV-MCP replacement for PX
Replies: 7
Views: 2640

Duzn't matta!

Parallel jobs on Windows actually run on MKS Toolkit (a UNIX emulator). So you have all the UNIX shell functionality you need. The tr command is definitely available.
by ray.wurlod
Thu Oct 12, 2006 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequence Trigger is not getting Triggered
Replies: 23
Views: 8841

Can you wrap these designs in Code tags, so that you can get the formatting right (and therefore comprehensible) please?
by ray.wurlod
Thu Oct 12, 2006 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare the two dates which is Greater
Replies: 8
Views: 6241

You can do it in one job. Perform the full outer join, then use a downstream Filter stage to constrain the rows passed through. I needed to be certain of what you needed to do.
by ray.wurlod
Thu Oct 12, 2006 2:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compiling a C++ Buildop Manually
Replies: 5
Views: 1776

The API is there so you can CODE lots of extra stuff. You still need to compile within the DataStage tool, so it can record the information it needs about what you've done. And, if you find my answers unacceptable, please don't let me delay your search for someone who cares about that particular fact.
by ray.wurlod
Thu Oct 12, 2006 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle NLS problem
Replies: 6
Views: 2622

Are NLS_LANG and LANG_C environment variables correctly set?
by ray.wurlod
Thu Oct 12, 2006 2:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling KeyMgtGetNextValue() while moving machines - Post2
Replies: 13
Views: 18512

I'd use a longer VarChar for the ID column; possibly VarChar(254) to be on the safe side.
by ray.wurlod
Thu Oct 12, 2006 2:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project backup
Replies: 4
Views: 1505

Maybe they never included DataStage in the auto-start-on-reboot directories (/etc/rc2.d for example)? Or maybe 5.9's system libraries are differently located than 5.8's. Involve your DataStage support provider for specific advice relating to your site.
by ray.wurlod
Thu Oct 12, 2006 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: keep old values in columns when updating Oracle table?
Replies: 3
Views: 1986

Welcome aboard. :D

Perform a lookup against the target table, or a hashed file containing relevant rows and columns from the target table. This will allow you to determine the current values, which you can use in the UPDATE statement if the source value is null.
by ray.wurlod
Thu Oct 12, 2006 2:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: migrating from V5.2 to V7.5
Replies: 1
Views: 946

Each job type in 7.5 will be whatever it was in 5.2.
by ray.wurlod
Thu Oct 12, 2006 2:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: GUI to Add/Update Table
Replies: 7
Views: 1381

Ad hoc or predictable updates?
by ray.wurlod
Thu Oct 12, 2006 2:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restart Process
Replies: 4
Views: 1291

Only by having a master master sequence that does not abort under any conditions.
by ray.wurlod
Thu Oct 12, 2006 1:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to connect to DS
Replies: 2
Views: 1027

Connection refused can be other things, such as port 31538 not being allowed through a firewall. You need to undertake a systematic investigation of where the problem is. For example, is the server machine running? Is dsrpcd running? Is port 31538 recorded in /etc/services? And so on.
by ray.wurlod
Thu Oct 12, 2006 1:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: GENERATING ERROR CODES
Replies: 1
Views: 695

Almost certainly, but there's not enough information in your post to suggest better mechanisms. Stage variables are evaluated for every row processed, so it's not surprising that there are repeats - a null in a new row in the same column will generate a repeat (if I read your specification correctly).
by ray.wurlod
Thu Oct 12, 2006 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Separate two command in "After Job Subroutine"
Replies: 9
Views: 3633

Semi-colon should work. It's the fundamental command separator in every UNIX shell of which I am aware. Please post your exact syntax.