Search found 42189 matches

by chulett
Tue Dec 20, 2005 8:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe will be going away...
Replies: 5
Views: 1445

Universe will be going away...

Not wanting to hijack the thread this came from, I've started another. "UniVerse" will be going away as the repository database in the next release. Though I'm sure IBM would be happy to sell you a copy of UniVerse when that happens. Ok... I understand things like Oracle will replace Universe as the...
by chulett
Tue Dec 20, 2005 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to set no limits as warning while running the job
Replies: 5
Views: 2855

One answer would be - why? Jobs should run with zero errors or warnings, setting it to unlimited is just asking for trouble.
by chulett
Tue Dec 20, 2005 8:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to write to DML's in User-defined query.
Replies: 6
Views: 1532

Use two different links.
by chulett
Mon Dec 19, 2005 10:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to pass the parameters to a job
Replies: 5
Views: 1501

Yes, it should work just fine. Perhaps there is a fundamental mismatch of parameter types at work here... as noted, please post the exact 'syntax complaint' you are getting, that and the parameter types involved should help figure out what is going on.
by chulett
Mon Dec 19, 2005 2:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator Stage
Replies: 5
Views: 1404

A UNIX sort is a string sort by default. Look on the man page for the use of the -n option for the numeric keys.
by chulett
Mon Dec 19, 2005 1:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator Stage
Replies: 5
Views: 1404

That's correct.
by chulett
Mon Dec 19, 2005 12:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator Stage
Replies: 5
Views: 1404

Re: Aggregator Stage

If I sort again in the aggregator stage, then the output seems to flow little faster This is a common misunderstanding. You are not "sorting again" - you are asserting the already sorted order of the incoming data. If it has no clue about the incoming data it will take the time to 'sort' it again t...
by chulett
Mon Dec 19, 2005 10:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use Session Date in Transformer Stage
Replies: 5
Views: 1587

Search the forum. From what I recall, the DB2 stage seems to want dates in internal format rather than the traditional external format you are using.
by chulett
Mon Dec 19, 2005 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: C Stage Plugin function Get required
Replies: 2
Views: 1034

Well, at least you were able to answer it... thanks for posting it back here. :wink:

Been noted here a number of times. You have to be careful on 64-bit systems and make sure you include the 32-bit libraries in your paths. It's interesting the different ways it manifests itself on different systems...
by chulett
Mon Dec 19, 2005 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use Session Date in Transformer Stage
Replies: 5
Views: 1587

You are getting the system date successfully, as is obvious from your error message. What you're not doing is handling it correctly. Need more information about what you are doing to provide specific help. What target database, target field, stage used, target datatype, etc. You'll more than likely ...
by chulett
Mon Dec 19, 2005 1:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS question re: Spanish characters
Replies: 13
Views: 5482

PS. This did work, by the way. :D

It does help tremendously, however, if when you set NLS_LANG in your dsenv file that you also export it properly. Exporting NSL_LANG made it seem like it wasn't going to work until I finally noticed the typo. Duh.
by chulett
Mon Dec 19, 2005 1:37 am
Forum: Site/Forum
Topic: Grid Computing - donate spare CPU cycles to research
Replies: 17
Views: 6772

In. :wink:
by chulett
Sat Dec 17, 2005 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to run a job in multiple instances
Replies: 17
Views: 5439

ArndW wrote:@NULL will always return the same series.

Hmmm... not according to the manual. Unless you mean it will always return the same series when started at the exact same time. As you noted, adding something like the pid on top of that will make it as unique as you can get.
by chulett
Fri Dec 16, 2005 6:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rnd() gives diff. op's in parallelly running Jobs vs Manager
Replies: 3
Views: 1199

From the BASIC pdf manual: Use the RANDOMIZE statement with an expression to make the RND function generate the same sequence of random numbers each time the program is run. If no expression is supplied, or if expression evaluates to the null value, the internal time of day is used (the null value i...
by chulett
Fri Dec 16, 2005 6:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: big XML files vs DS
Replies: 8
Views: 2166

Yes, as already noted there are definite limits to what can be brought in via the Folder stage. Don't forget that it reads in each file as a record, with the filename going in the first field and the entire contents of the file going into the second field, which is then parsed by the XML Input stage...