Search found 42189 matches

by chulett
Wed Oct 04, 2006 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Stored procedure stage
Replies: 9
Views: 3970

ajith wrote:I heard that HP-UX needs SHLIB_PATH in addition to LD_LIBRARY_PATH.

It's one or the other, depending on your operating system. H-PUX uses SHLIB_PATH.
by chulett
Wed Oct 04, 2006 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Reading Char Field from Sequential File
Replies: 4
Views: 2758

It's not about specifying the length per se, but about char versus varchar. When you declared the first field to be a char(6), that means it will always have 6 characters in it - period. DataStage isn't seeing that.

It needs to be declared as a varchar as well.
by chulett
Wed Oct 04, 2006 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove extra lines in the output file?
Replies: 6
Views: 1865

So, in other words an Oracle sqplus setting, nothing to do with the shell script at all but rather the sqlplus script.
by chulett
Wed Oct 04, 2006 6:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting a Large text file into small files
Replies: 13
Views: 4753

You are probably confused by the lack of a '.txt' extension on the split files. It doesn't mean that it 'changed the format', if you open them you'll see they are still fine. Part of your 'split post-processing' will need to be renaming the files back to your desired pattern, including restoring the...
by chulett
Wed Oct 04, 2006 6:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HOW TO CONVERT A DATE...................
Replies: 2
Views: 1132

The generic answer to your 'how to convert a date' question is 'using IConv/OConv'. There are tons of posts here with examples, you'll find them as well in the online help for each function. It would help to mention the target database as that can change things, but typically a 'timestamp' means dat...
by chulett
Wed Oct 04, 2006 6:13 am
Forum: General
Topic: calling a sequencer from teradata-multi load stage
Replies: 7
Views: 5813

Don't you have access to any Teradata resources where you work? You need to find out if they even support the concept, something analogous to an Oracle 'sequence' object or other database's SERIAL field - and that's got nothing to do with DataStage.
by chulett
Tue Oct 03, 2006 3:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instance from Unix
Replies: 8
Views: 3391

Your other option would be to concatenate all of the files you need to process into one large 'work' file and then process that rather than running a jillion instances of the job.
by chulett
Mon Oct 02, 2006 6:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: year and month in oracle 9i dirct load
Replies: 7
Views: 1452

Those are reserved words and must be double-quoted if you want to use them in a sqlldr control file.
by chulett
Mon Oct 02, 2006 6:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row out of sequence error
Replies: 2
Views: 1071

Exactly... sometimes people think the 'Sort' fields in the Aggregator stage are there to tell it how you want it sorted. They are actually there to assert the sorted order of the incoming data. If the sorted order matches the grouping / aggregation being done, then the stage can do much less work, r...
by chulett
Sat Sep 30, 2006 9:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage J2S2BsmXfm..Aggr detected
Replies: 10
Views: 3245

Ok, then you've obviously blown the aggregator out of the water with that volume. Presort the data before the Aggregator stage in a manner that supports the grouping being done and then assert that in the Aggregator stage. You can handle pretty much any amount that way but the sorting could be an is...
by chulett
Sat Sep 30, 2006 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage J2S2BsmXfm..Aggr detected
Replies: 10
Views: 3245

That doesn't really help. :?

How about some details? What goes on between those two stages? Volume being processed? Anything you can think of that may help...
by chulett
Sat Sep 30, 2006 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage J2S2BsmXfm..Aggr detected
Replies: 10
Views: 3245

Not knowing anything about your job - a guess. What kind of volume are you aggregating? There is a limit to the amount of data that you can aggregate at any given time without pre-sorting the data and when you hit that limit, the stage just kind of falls over dead. Help us help you when you ask for ...
by chulett
Fri Sep 29, 2006 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage 7.5.2 Writing to XML file
Replies: 6
Views: 4547

You've found it, but for other's benefit it is located under the 'Real Time' portion of the palette in the Designer. Not being one of the 'optional' plug-in types of stages, it installs automatically, so no worries about it not showing up. Hopefully. :wink:
by chulett
Fri Sep 29, 2006 9:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage 7.5.2 Writing to XML file
Replies: 6
Views: 4547

Sure... you should have three XML related stages installed: XML Input, XML Transformer and lastly the XML Output stage which you would use to create XML files.

You should also be able to find an 'XML Pack 2.0' pdf manual in your 'Docs' directory which will walk you through use of the stages.