Search found 42189 matches

by chulett
Sat Dec 08, 2007 7:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Group by Date column
Replies: 11
Views: 1953

New problem = new post. This has nothing to do with grouping by a date column so shouldn't be discussed here. Otherwise we'd just allow one post per user (probably with a subject line like 'Hi' or 'Urgent') that just gets longer and longer. As noted earlier, did you try sending the internal formatt...
by chulett
Sat Dec 08, 2007 7:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: command not in the VOC
Replies: 1
Views: 692

You are at the wrong 'command line' - dsjob is an operating system command. So no 'uvsh' or 'dssh' before-hand, just run it from DOS.
by chulett
Fri Dec 07, 2007 5:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scheduling a DataStage
Replies: 4
Views: 2513

Sure there is - just 'Add to schedule' over and over at 15 minute intervals. :wink:
by chulett
Fri Dec 07, 2007 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling invalid characters in XML
Replies: 8
Views: 2703

Ah... missed that fact, first time through, that you are storing the string of unprintable characters in common so they are only built once. That will certainly help. :wink:
by chulett
Fri Dec 07, 2007 2:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I genarate multiple rows from a single row
Replies: 5
Views: 1995

How is this different from your other post? :?
by chulett
Fri Dec 07, 2007 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling invalid characters in XML
Replies: 8
Views: 2703

Ok, I can keep that in my back pocket. I was worried that with a solution of that nature that there would be a performance impact, as we could be applying it to several million records in a run.

Guess I could run some timing tests, with and without...
by chulett
Fri Dec 07, 2007 12:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling invalid characters in XML
Replies: 8
Views: 2703

Handling invalid characters in XML

I'm just wondering how people are handling invalid characters in XML they are generating? Specifically, we build a string element with a user-supplied 'Business Description' and today one had a ^C in the middle of it. Things like "&" get properly translated but it just passed the ^C thru in the ...
by chulett
Fri Dec 07, 2007 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No disk resources found in "sort" pool or default
Replies: 6
Views: 4361

You were asked "what has changed" not "what did you change", quite a difference there.
by chulett
Fri Dec 07, 2007 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to enable clean up resource /performance monitor
Replies: 6
Views: 2336

As noted, search the forums for JobMonApp - your issue with it has been asked and answered several times already.
by chulett
Fri Dec 07, 2007 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing SQL Error code/message in transformer reject
Replies: 1
Views: 1187

Seems to depend on the stage author, what exactly gets captured where. Suggest you create a test and include all of the 'Link Variables' in the reject record, see which has what you are looking for. REJECTEDCODE? SQLERR? Don't recall what all is there.
by chulett
Fri Dec 07, 2007 1:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Increase performance in Server Jobs
Replies: 12
Views: 2693

All true, but it has long been acknowledged that the DataStage implementation (Xerces, I believe) of the XML stages isn't exactly the fastest solution out there. Pretty sure even Ernie has posted to that effect. So, when people look for more speed generating their XML, they tend to either: A) Use th...
by chulett
Fri Dec 07, 2007 12:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need schedule the datastage job on every month first sunday
Replies: 5
Views: 3274

[sigh] Simple as that.

Thank Gawd I didn't post my big goofy Swiss Army Knife version. At least now I know what the trimmed down version will look like. With the appropriate copyrights to Wurlod Industries included, of course. :lol:
by chulett
Fri Dec 07, 2007 12:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Increase performance in Server Jobs
Replies: 12
Views: 2693

Start here: Read about multiple instances here and in the documentation. We cover it extensively. The technique is to divide (partition) your source data into sets and use multiple job instances to process the different subsets (partitions) of the source data simultaneously, thus, you utilize more c...
by chulett
Fri Dec 07, 2007 12:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sql queries for stages
Replies: 3
Views: 1423

select 'What do you mean?' from dual where stage_name in ('FUNNEL','AGGREGATOR','MERGE','PIVOT') Sorry, but that's all that came to mind when I saw your post. Perhaps someone else has something more constructive, but I honestly have no idea what you are trying to find out here. There are no...
by chulett
Fri Dec 07, 2007 12:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: encode stage command line
Replies: 10
Views: 7208

OK, one hurdle down. Next problem - do you have a command line utility that will encode a string down to its binary equivalent? That's what I assume you mean by 'to 0s and 1s'. Recognize the fact that the stage is looking for a 'command line', meaning there is no DataStage utility at work here but r...