Search found 42189 matches

by chulett
Fri Jan 25, 2013 4:00 pm
Forum: General
Topic: Clean-up or purge multi instance jobs from Director
Replies: 12
Views: 6990

Well... to get this off the table right away, have you tried setting the Auto Purge option for the base job to keep 5 days worth of runs? Did that not work for you?
by chulett
Fri Jan 25, 2013 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filename column for multiple file read
Replies: 7
Views: 2805

No worries! Just wanted to add that little tidbit. :wink:
by chulett
Fri Jan 25, 2013 11:29 am
Forum: General
Topic: Datastage Certification
Replies: 9
Views: 4487

Before anyone else gets the brilliant idea to post links to their site where they sell the exam answers - I'm going to delete them as I did the two that just showed up. Pardon my French but we don't allow that kind of bullshit here.
by chulett
Fri Jan 25, 2013 9:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace special characters
Replies: 16
Views: 8504

The problem with the command line is i have to give one character at a time.. With tr yes but that's not an issue with awk or sed which is why I mentioned them, the latter of which would probably be the easiest to set up assuming you have a familiarity with regular expressions. Have you looked into...
by chulett
Fri Jan 25, 2013 7:12 am
Forum: General
Topic: Passing value of table to where clause
Replies: 1
Views: 1165

UserStatus is not just a variable, it's a storage area inside a job's internal structure. Do an exact search here for DSSetUserStatus and the "interlude" routine you need to create to call it.
by chulett
Thu Jan 24, 2013 1:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filename column for multiple file read
Replies: 7
Views: 2805

FYI - a search here would have turned that information up.
by chulett
Thu Jan 24, 2013 1:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-01722: invalid number
Replies: 1
Views: 1502

:!: Split to your own post.
by chulett
Thu Jan 24, 2013 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SetNull() in loop variables performing annoyingly
Replies: 3
Views: 1352

ArndW wrote:I would guess that they are akin to stage variables, which cannot contain nulls
That hasn't been true for awhile from what I recall. The 'cannot contain nulls' part.
by chulett
Thu Jan 24, 2013 10:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex coding in Datastage
Replies: 6
Views: 2277

Sounds like you should talk to Kumar.

viewtopic.php?t=148701
by chulett
Thu Jan 24, 2013 8:44 am
Forum: General
Topic: List of jobs run in last 40 days
Replies: 11
Views: 2381

No problem. Keep in mind the fact that you may need to temporarily disable automatic refresh in the Director to make this less crazy making with a large number of jobs. :wink:
by chulett
Thu Jan 24, 2013 8:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert into single cell - All values
Replies: 4
Views: 1751

What have you tried? Looks like a vertical pivot to me with an extra step to contatenate the new columns into a single one, perhaps with a newline between them. Or if you are on 8.5 or higher, transformer looping.
by chulett
Thu Jan 24, 2013 8:20 am
Forum: General
Topic: List of jobs run in last 40 days
Replies: 11
Views: 2381

Get the listing that you want, perhaps turning off the Category display to do that. Then choose 'Print' and enable the 'Print to File' option.
by chulett
Thu Jan 24, 2013 7:43 am
Forum: General
Topic: Error while using DSGetStageLinks()
Replies: 1
Views: 1148

It has no idea what DSGetStageLinks is as it has never been defined in your routine. In order to define it, you need to include the "header" file that has that definition in it and all of its siblings. Add this line to the top of your routine:

$INCLUDE DSINCLUDE JOBCONTROL.H
by chulett
Thu Jan 24, 2013 7:38 am
Forum: General
Topic: List of jobs run in last 40 days
Replies: 11
Views: 2381

There's nothing in XMETA that I'm aware of that isn't also in the Director. And you don't need to be keeping "40 days" of history to be able to do what Arnd suggested, you just need to get the information from the last run of each job and check the date is within your 40 day window. You co...
by chulett
Wed Jan 23, 2013 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace special characters
Replies: 16
Views: 8504

I got the impression that he found it but wasn't sure how to use it.

If you are not fluent in C++ coding and how to integrate that into DataStage, I would suggest sticking with the external command line approach we've been discussing.