Search found 42189 matches

by chulett
Thu Aug 14, 2008 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to populate/Pass NULL. Equivalent to SETNULL in Px
Replies: 2
Views: 2452

You use the @NULL system variable.
by chulett
Thu Aug 14, 2008 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is outer join in lookup stage possible?
Replies: 2
Views: 1704

That's just a matter of setting the Lookup Failure property to 'Continue', is it not? :?
by chulett
Thu Aug 14, 2008 7:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Performance
Replies: 9
Views: 3478

Tune your query. As Ken notes, the time to the first record is NO indication of the overall time it will take. Check your explain plan for nested loops and hint to 'use_hash' joins if needed. Also consider 'full' and 'parallel' hints and 'alter session' statements before sql to get the maximum dump...
by chulett
Thu Aug 14, 2008 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error within sequence
Replies: 6
Views: 3759

Did it immediately failed after the upgrade or did it work for awhile and then start crapping out? Regardless, that 'user api layer' error is odd enough that I'd suggest you open a case with your official support provider and then let us know what the resolution was.
by chulett
Thu Aug 14, 2008 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sub routine
Replies: 6
Views: 1327

Assumed so, thanks for the confirmation.

Output is a dynamic array here, not Ans or Status, which is why I found this syntax odd. Technically it works cuz DataStage is smarter than us but tells me the coder didn't really understand what they were doing. :?
by chulett
Thu Aug 14, 2008 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Parameters
Replies: 8
Views: 1530

Or as noted in the original post, make sure the pathname parameter value has a trailing separator: p_FoldName /dw/dsadm/ p_File MyFile.Txt #p_FoldName##p_File# Makes it more portable if that is a consideration. However, I put the slash between the parameters as there's no chance of going from UNIX t...
by chulett
Thu Aug 14, 2008 7:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to convert Excel to xml?
Replies: 4
Views: 1579

Ray told you how to do that.
by chulett
Thu Aug 14, 2008 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: converting timestamp to date format
Replies: 6
Views: 6464

As Ray notes, substring the date out then convert. IMHO, neither field should be declared a Timestamp in your job as neither fits that definition, use Varchar for the source and decimal/integer/numeric for the target.
by chulett
Thu Aug 14, 2008 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sub routine
Replies: 6
Views: 1327

Well, now that I'm up from sleepy time... This is oddly coded as I don't know why one would treat 'Ans' as a dynamic array for no good reason, which is what the angle brackets are doing: they denote the element of the array to access. So <1> means the first element and <-1> is special magic to mean ...
by chulett
Thu Aug 14, 2008 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get Max(DATE) using transformer
Replies: 16
Views: 12625

There's no 'Remove Duplicates' stage in Server. Well, there is but it's called the Transformer. :wink:
by chulett
Thu Aug 14, 2008 6:55 am
Forum: General
Topic: Server Job result
Replies: 1
Views: 1004

Welcome aboard! :D

Search the forums for "USERSTATUS", a mechanism to pass values from one job to another. You could also land the data, say in a flat file, then use a routine to pick it up and then make your decision.
by chulett
Wed Aug 13, 2008 11:15 pm
Forum: General
Topic: Using environment variables in ODBC Connector stage
Replies: 5
Views: 2878

Define what "has not worked" or "will not run" mean.
by chulett
Wed Aug 13, 2008 8:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to process a sequential file containing quotes.
Replies: 15
Views: 23221

:? Interesting first post.

girish312 - you need to include your questions in the body of the post, no-one can see your subject until they reply. And most won't even notice it, I'd wager.

girish312 wrote:Were you able to reslve the answer to schema def issue here?
by chulett
Wed Aug 13, 2008 8:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oci bulk loader/sqlldr log file location
Replies: 1
Views: 1234

Welcome aboard. :D

Odd as it sounds, in automatic mode no such files are created. The only information you have is what ends up in the job's log.
by chulett
Wed Aug 13, 2008 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job parameter in Stored procedure.
Replies: 12
Views: 3931

Hand typing leads to errors so I use the 'helper' when I can. For example, environment variables have only one dollar sign in them, not two.