Search found 42189 matches

by chulett
Fri Feb 11, 2011 5:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String extract
Replies: 13
Views: 5160

And just to head Ray off at the pass, no it's not 42.
by chulett
Fri Feb 11, 2011 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job giving correct output in development but not giving in p
Replies: 4
Views: 2128

daignault wrote:As a rule of thumb, never EVER develop a Datastage job in enterprise with 1 node.
Unless, of course, it will always be run under a single node config. :wink:
by chulett
Fri Feb 11, 2011 10:44 am
Forum: General
Topic: Datastage jobs Using Oracle Table
Replies: 4
Views: 3330

Not sure how much of this will still work in the 8.x world but do an exact search here for "OLETYPE" and go from there.
by chulett
Fri Feb 11, 2011 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: AIX 6.1 kernel parameters for IIS 8.5
Replies: 4
Views: 6298

OK, I'll bite... do you not have a SysAdmin?
by chulett
Fri Feb 11, 2011 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Handling
Replies: 3
Views: 3890

An exact search for "Exporting nullable field without null handling properties" would help as well.
by chulett
Fri Feb 11, 2011 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp issue inserting into Oracle table from flat file
Replies: 5
Views: 2132

And here we are.

The stage (or you) are using TO_DATE() to populate the target, I assume. Use TO_TIMESTAMP() instead.
by chulett
Fri Feb 11, 2011 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String extract
Replies: 13
Views: 5160

:!: Esoteric Usage Alert :!:

YourField[1] will return 1 character from the end of the string.


:wink:
by chulett
Fri Feb 11, 2011 6:58 am
Forum: General
Topic: how to get correct value of job end time using dsjob comamnd
Replies: 6
Views: 4191

OK, specifically - you are querying the 'base' Multi-Instance job (the one that always shows Compiled) rather than one of the actual instances. Use JobName.InvocationID in the dsjob command rather than just JobName.
by chulett
Fri Feb 11, 2011 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to generating XML hierarchical structure
Replies: 3
Views: 2976

XML should be "one long string". Only peoples 'need' that pretty printed structure, no consumer of the file will. However, the Formatted option in the stage will do something like that for you... emphasis on something like that. My advice? Don't bother, continue to let tools like IE (tempo...
by chulett
Fri Feb 11, 2011 6:50 am
Forum: General
Topic: Get string from file using Execute Cmd & UserVar activit
Replies: 2
Views: 1992

Sounds like you are using $ReturnValue, and zero = successful. Use $CommandOutput instead. Are also read up here about 'Field Marks', aka the @FM system variable and the need to strip them.
by chulett
Thu Feb 10, 2011 5:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CONVERT 'MM-DD-YYYY' to YYYY-MM-DD
Replies: 7
Views: 3575

Assuming you really need that output format... what is your target datatype for this? String or Date?
by chulett
Thu Feb 10, 2011 10:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: insert and updateConstraints with columns having null values
Replies: 7
Views: 4027

Nothing magical, simply check for null and if found, set to your "in-band" value otherwise keep the original value. On the way back out, reverse the check. Biggest thing is to make sure the value you pick will never occur naturally in your data. For the first check, you have the NullToValu...
by chulett
Thu Feb 10, 2011 8:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File to XML with Repeating Groups
Replies: 2
Views: 1979

Jeremy - make sure you read the XML Best Practices document at Kim Duke's website in his 'DS Tips' section. It's old but still solid information on how to solve XML problems, including yours from what I recall.
by chulett
Thu Feb 10, 2011 8:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP stage
Replies: 3
Views: 2454

rsunny wrote:So do i need to ask system admin for the user name and password to connect to the client server?
Yes, of course.
by chulett
Thu Feb 10, 2011 12:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Internal Data Error while reading the data from AS/400
Replies: 2
Views: 1484

Your log table has too many messages written to it and 'overflowed' into a corrupted state. Do an exact search here for "computed blink" to see what your options are at this point.