Search found 42189 matches

by chulett
Sat Nov 20, 2010 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting from rows to Columns
Replies: 3
Views: 1959

An exact search here for 'vertical pivot' will turn up your options. In Server, a hashed file can make this process pretty simple as well.
by chulett
Sat Nov 20, 2010 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error:Abnormal termination of stage Seqfile1.IDENT1 detected
Replies: 15
Views: 11520

Your error must be from a run without a transformer, otherwise it wouldn't have mentioned IDENT1 as the active process.

Are there any other warnings in the log? If you Reset the aborted job from the Director, does a new "From previous run..." log entry appear? If so, post the contents.
by chulett
Sat Nov 20, 2010 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: GET FILENAME
Replies: 37
Views: 9673

Sorry, missed that in the code you posted. Your problem is the big IF/END you've wrapped the entire code block in. Move the "ErrorCode = 0" line outside of the END, either that or set it to a non-zero value when your "len(Arg1) = 3" test fails. Regardless, ErrorCode needs to be a...
by chulett
Fri Nov 19, 2010 8:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid Character Issue
Replies: 6
Views: 2114

You need to determine what exactly it is. Use "od" on the UNIX box or bring the file over to your PC and use a hex editor, but do something to find the actual value of that character. Only then will you be able to transform it in some fashion.
by chulett
Fri Nov 19, 2010 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid Character Issue
Replies: 6
Views: 2114

With Trim() or Convert() as noted with the proper CHAR() value to indentify them. If you are certain of that value, use CHAR(001) as the value to match on.
by chulett
Fri Nov 19, 2010 5:36 pm
Forum: General
Topic: EXPORT a category from a UNIX prompt
Replies: 1
Views: 892

You can't - it's one job or the whole project. You can, however, get a list of all jobs in the category and then export them (one by one) in a loop.
by chulett
Fri Nov 19, 2010 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.UVOpen Unable to open file - Hash File
Replies: 4
Views: 7202

Has the job been run at least once so the hashed file has actually been created? Can you verify at the O/S level existence and permissions?
by chulett
Fri Nov 19, 2010 2:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Performance settings
Replies: 5
Views: 1680

Or properly pre-size the Hashed File's minimum modulus so it is created at the full size and then just filled rather than constantly needing to be extended.
by chulett
Fri Nov 19, 2010 10:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mainframe low values
Replies: 10
Views: 4123

Mike wrote:How did you conclude that Char(255) is equivalent to COBOL LOW-VALUES?
I've been wondering the same thing all along but decided to stick with the assertion that they are 255s rather than "low values". :?
by chulett
Fri Nov 19, 2010 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: GET FILENAME
Replies: 37
Views: 9673

You need to create it as a "Before/After" type routine, which changes the calling mechanism.
by chulett
Fri Nov 19, 2010 8:10 am
Forum: General
Topic: How to mail rejected records..
Replies: 18
Views: 5600

One example here: viewtopic.php?t=134275

Also, an exact search for "Call DSSetUserStatus" will turn up many more.
by chulett
Thu Nov 18, 2010 7:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage - wI/O
Replies: 15
Views: 5848

:lol:

More cleanup work for me later.... sigh...
by chulett
Thu Nov 18, 2010 7:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data scrubbing/scrambling
Replies: 4
Views: 2598

Masking is similar but involves still having 'useful' data when you are done, this seems to be just... scrambling. :wink:

Here is a fairly recent discussion on the subject.
by chulett
Thu Nov 18, 2010 7:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid Character Issue
Replies: 6
Views: 2114

There's nothing really all that special about those characters and you haven't told us what the resolution is you are attempting. Let's start with - what are you trying to do with/to them?
by chulett
Thu Nov 18, 2010 7:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write mode failure
Replies: 1
Views: 1172

:!: I split this out from the original post it was added to and linked you back to it for reference. That let's you control the destiny of your version of this problem. That also means I had to guess at your version, O/S, etc so please take a moment and edit your post if I got any of that wrong.