Search found 42189 matches

by chulett
Thu Nov 13, 2008 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSADM user can not add projects
Replies: 11
Views: 2641

Hmmm... doesn't sound like it thinks 'dsadm' is your 'Administration' user any more. Unfortunately, I don't recall where/how it stores that information. Hopefully someone does. In the meantime, in case it makes a difference - what flavor of UNIX you got?
by chulett
Thu Nov 13, 2008 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_BadAlloc: Heap allocation failed..
Replies: 1
Views: 1209

You also face the problem of having posted in the wrong forum. This is for discussion of possible FAQ topics, not help with problems. Please repost your problem in the appropriate forum - which looks like it should be the Enterprise Edition forum if this is a PX job.
by chulett
Thu Nov 13, 2008 12:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding months to Date in Server Edition
Replies: 6
Views: 4226

Depends on your definition of 'month'. Typically, you either add a number of days to the date or break it up into component pieces and bump the month (and perhaps year and day) individually. Both Ray and Ken have routines to do this available for download, from what I recall.
by chulett
Wed Nov 12, 2008 11:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter
Replies: 6
Views: 1450

No, seeing as you haven't really given us much to go on. How, exactly, do these file values get read and passed as parameters to your jobs? :?
by chulett
Wed Nov 12, 2008 11:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Display record counts on links in Designer from the last run
Replies: 15
Views: 2964

Yah, already said I was afraid that would be the case.
by chulett
Wed Nov 12, 2008 11:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I extract just the values from xml file???
Replies: 11
Views: 4209

chulett wrote:For documentation there is an XML PACK pdf file in your 'Docs' directory. And an XML Best Practices writeup on Kim Duke's website.

There ya go.
by chulett
Wed Nov 12, 2008 11:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: From previous run info
Replies: 4
Views: 1901

Shotgun. :wink:
by chulett
Wed Nov 12, 2008 11:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "cc" on an Email
Replies: 3
Views: 1531

I've used "blat" in the past (UNIX, not Windows) and didn't have any issues with it. Some nice features there. :wink:
by chulett
Wed Nov 12, 2008 11:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Custom Condition
Replies: 5
Views: 3053

Yes, you do.
by chulett
Wed Nov 12, 2008 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameters
Replies: 1
Views: 717

You include them as "name value pairs", one set per parameter to be passed:

Code: Select all

-param <name>=<value>

Assuming we're talking about dsjob here.
by chulett
Wed Nov 12, 2008 2:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add 180 days to my source date
Replies: 8
Views: 2430

:? Just the number and column names themselves are needed:

Code: Select all

DateFromDaysSince(180,DSLink1.CHANGE_DATE)

Assuming CHANGE_DATE is actually a datatype of DATE, otherwise you'll need to add a StringToDate() function into the mix.
by chulett
Wed Nov 12, 2008 2:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add 180 days to my source date
Replies: 8
Views: 2430

Yes, that's the function and it happens to be the first one documented in Appendix B of the Parallel Job Developer's Guide. Pass it a date and a # of days offset.
by chulett
Wed Nov 12, 2008 12:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retaining single quotes in passed parameters?
Replies: 6
Views: 5924

Hmmm... perhaps opening a case with your official support provider is in order, if all of the usual tricks to stop the quote stripping no longer work in this new version. How similar are your various queries? Worst case, can you break things up into separate parameters, something like... Select to_c...
by chulett
Wed Nov 12, 2008 12:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs are schedule, but unscheduled in director
Replies: 9
Views: 1770

Odd. Still suggest you take this to a SysAdmin and see if they can track down what crontab these are actually in.

Unless... any chance something else is running them, some other enterprise scheduling tool like Control-M or Tivoli?
by chulett
Wed Nov 12, 2008 12:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs are schedule, but unscheduled in director
Replies: 9
Views: 1770

That means there is nothing scheduled for that user. However, if the jobs are actually still running from cron, that means some user has them in their schedule, just not this one. You may need to get some help from the SysAdmins on that box for this, but you need to "query" all of the crontabs out t...