Search found 42189 matches

by chulett
Thu Aug 20, 2009 5:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to check for symbolic characters using tranform function
Replies: 2
Views: 1130

Best to start by posting in the correct forum, this one is for Server jobs. However, we can see about having the Moderator move it, so that's for future reference only. How about we start with a better explanation of your goal, for example - what exactly do you mean by "symbolic characters"...
by chulett
Thu Aug 20, 2009 5:34 am
Forum: General
Topic: Control M Scheduler
Replies: 9
Views: 2771

There's no "docs" and any links you can turn up yourself for Control-M rather easily using Google or your favorite search engine. I would suggest you spend some time with the people in your company responsible for Control-M if you need a better understanding of what it does or to see examp...
by chulett
Thu Aug 20, 2009 5:29 am
Forum: General
Topic: ORA-01036: illegal variable name/number
Replies: 13
Views: 2221

No "where" clause? That means the key column is illegal, that or you need to add the clause and bind the Key into it as noted by position. And ensure your selected columns match the columns defined in the stage. Exactly.
by chulett
Thu Aug 20, 2009 5:24 am
Forum: General
Topic: Control M Scheduler
Replies: 9
Views: 2771

You don't absolutely "need" a script to schedule something in Control-M or any other Enterprise Scheduler but it certainly is the correct way to do that. As noted, the script would be a wrapper for the dsjob command and could do a number of things besides simply launch a job - it could che...
by chulett
Wed Aug 19, 2009 8:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read only access to Project
Replies: 18
Views: 6458

Why, there would still be the kduke option. Similar in taste to the sjfearnside option, but with a tangy twist of lemon.
by chulett
Wed Aug 19, 2009 6:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rnd function always returns the same value
Replies: 2
Views: 2700

I was thinking the same thing but it seems the seed is more applicable to the Randomize() function. Rnd(n) is supposed to generate a random number between 0 and n-1 rather than a series of 'pseudo-random' numbers.

Mind you, I haven't read the BASIC manual entry for this, only the online help.
by chulett
Wed Aug 19, 2009 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Length issue
Replies: 4
Views: 1590

So it's a CHAR(15) in DB2? If the concern is just for this particular value and all other values pass thru then use an IF-THEN-ELSE derivation. Or is this a more general rule you need to apply to multiple values?
by chulett
Wed Aug 19, 2009 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiinstance subbatch calling multiinstance job
Replies: 1
Views: 1518

That's because what you have is a literal string: "EOA1010LdIncidentTable.DSJobInvocationId" so it uses that rather than realize there is a macro locked inside the quotes prison. Not saying this will solve all of your problems but try: hJob10 = DSAttachJob("EOA1010LdIncidentTable.&quo...
by chulett
Wed Aug 19, 2009 4:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Length issue
Replies: 4
Views: 1590

What is the datatype of your target field in the table? What database?
by chulett
Wed Aug 19, 2009 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aggregator issue
Replies: 4
Views: 2435

Try adding the Preserve Type optional propery to the 'Column for Calcuations' and set it to True.
by chulett
Wed Aug 19, 2009 1:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController,1: Null string argument.
Replies: 15
Views: 22610

To the best of my knowledge, it basically goes "left to right" and stops evaluating as soon as it can. Your problem may have strictly been a null versus empty string issue but I'm going to have to defer that judgement to those that have a more intimate knowledge of How Things Work, like Ra...
by chulett
Wed Aug 19, 2009 12:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController,1: Null string argument.
Replies: 15
Views: 22610

"(an EMPTY string; I guess this differs from a NULL string)"

It most definitely does. Differ, that is.
by chulett
Wed Aug 19, 2009 10:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stored procedure stage always returm 0
Replies: 12
Views: 4445

For whatever this is worth, I haven't seen this issue in Oracle as long as the proc properly does a RAISE of any errors encountered.