Search found 42189 matches

by chulett
Sat Oct 14, 2006 7:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Verifying if database indices were dropped
Replies: 8
Views: 1696

Sorry Kim, wasn't taking to 'you you' but the more generic 'you' of the OP. I'll make a small... correction... to my post. :wink:
by chulett
Sat Oct 14, 2006 7:09 am
Forum: General
Topic: Recompiling all jobs following upgrades is slow.
Replies: 13
Views: 6686

If you unprotect your project, the state of the jobs should also automatically chagne to Non-Readonly. Umm... no. Protected and Read Only are two separate things. One shouldn't have to unprotect the project and then flip all the RO bits to NRO just to recompile things. Goodness knows what some nast...
by chulett
Sat Oct 14, 2006 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ExecSH cp command
Replies: 6
Views: 3377

You do... and no space between the plus sign and the date mask or you end up doing some kind of odd math. I don't see any reason something simple like this would not work from DataStage except for all the standard reasons we've talked about ad nauseam. However, since you've taken this out of the con...
by chulett
Fri Oct 13, 2006 10:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Staging area
Replies: 14
Views: 3942

If this was usenet, I'd say we have a troll.
by chulett
Fri Oct 13, 2006 7:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Verifying if database indices were dropped
Replies: 8
Views: 1696

Gateleys, you didn't blink on Kim's reference to 'dual' so, on the off chance you are on Oracle: SELECT constraint_name, constraint_type, r_constraint_name, status, delete_rule, r_constraint_name, r_owner, search_condition, deferrable, deferred, validated, bad, rely FROM SYS.dba_constraints WHERE ta...
by chulett
Fri Oct 13, 2006 7:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp comparison not working
Replies: 2
Views: 796

You must not have read the fine print. "This routine should not be used more than one place in a job"... and you've called it twice in one derivation. Setup a stage variable, make the call once and then do your comparisons to the stage variable. Or check out the RowProcCompareWithPreviousValue routi...
by chulett
Fri Oct 13, 2006 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Verifying if database indices were dropped
Replies: 8
Views: 1696

It would help if we knew what database you were using.
by chulett
Fri Oct 13, 2006 3:16 pm
Forum: General
Topic: Recompiling all jobs following upgrades is slow.
Replies: 13
Views: 6686

Re: Recompiling all jobs following upgrades is slow.

These projects are protected and first need to be unprotected in order to use either method. That's not true. A protected project can be 'multi job compiled' using the dsadm userid. Granted, it is slow as molasses because of all the silly gui updating going on, but you don't have to unprotect the p...
by chulett
Fri Oct 13, 2006 2:50 pm
Forum: General
Topic: See you at the IBM show
Replies: 6
Views: 3296

[sigh]
by chulett
Fri Oct 13, 2006 2:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing Previous Value with Current Value
Replies: 5
Views: 1853

You are close. Yes, you use two stage variables, but it looks like you've got them in the wrong order. And you need to compare the values up in the Stage Variables area, not down in the derivation of the incoming data. So, in the order shown below... Stage Variable Derivation svIsNew NEW_KEY_VAL <> ...
by chulett
Fri Oct 13, 2006 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: rows into columns
Replies: 3
Views: 1335

Actually, based on your example you need to do the opposite - columns into rows. Which means you can use the Pivot stage to do that for you.
by chulett
Fri Oct 13, 2006 11:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB.exe - returncode is 0 but job was aborted
Replies: 3
Views: 2272

The -jobstatus option would be the one. Then your return codes would be the internal codes:

1 = Ran OK
2 = Ran with Warnings
3 = Aborted

etc.

(dang, too late!)
by chulett
Fri Oct 13, 2006 10:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSWaitForFile with '*'
Replies: 3
Views: 1173

<duplicate post cleared>

Dang site is acting up for me today. Push the button once, wait forever and then get two posts for the price of one. Sheesh. :?
by chulett
Fri Oct 13, 2006 10:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSWaitForFile with '*'
Replies: 3
Views: 1173

Not possible, the stage does not support wildcards.
by chulett
Fri Oct 13, 2006 10:46 am
Forum: Enhancement Wish List
Topic: How about a Change Data Detection stage for all DS versions?
Replies: 5
Views: 2595

Sorry if my post was a little confusing. The CDC stage *is* a PX only stage, I was talking about emulating what it does under the covers in a Server job - not saying there was a Server stage equivalent.