Search found 42189 matches

by chulett
Thu Nov 26, 2009 9:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage export types - pros and cons
Replies: 6
Views: 3261

They will be skipped when locked / open however. And IMHO you should stick with dsx for whole project exports. I find xml clumsy and the first thing DataStage is going to do with an xml export when you go to import it is convert it to dsx first, so you can save a (potentially quite long) step by usi...
by chulett
Thu Nov 26, 2009 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write to dataset failed
Replies: 13
Views: 5386

satish.raghavan wrote:Can anyone help me because hanging around with this problem for a long time.
Why not involve your official support provider rather than 'hanging around' with it?
by chulett
Thu Nov 26, 2009 8:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator group change
Replies: 9
Views: 2485

8)

Thanks for the explanations.
by chulett
Thu Nov 26, 2009 8:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maintenance and deletion of log files and CORE files.
Replies: 3
Views: 1608

Any 'core' files would need to be handled by the O/S, probably a simple cron script to find and nuke them. And 'log files' means job logs? If so, you handle them with appropriate Auto Purge settings.
by chulett
Thu Nov 26, 2009 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert new rows(with the same key) breaks the run!
Replies: 7
Views: 9797

Me, I know I'm not Wright. :wink: If you don't have duplicates in the incoming stream, or you don't need to record what keys you just inserted, you can skip the whole 'update the hashed file' part. Or for the latter you can defer the update by dumping new keys to a flat file and loading them back in...
by chulett
Wed Nov 25, 2009 10:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator group change
Replies: 9
Views: 2485

Getting closer. :wink: Between postings I tried the sort stage not sorting and I got the following fatal error when I ran the job: Sort_16,0: Input not sorted at record 54332 This is untrue unless it was somehow an artifact of the partioning (running on 4 nodes). There is a Sequential File stage rea...
by chulett
Wed Nov 25, 2009 10:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator group change
Replies: 9
Views: 2485

OK. I had already tried a Sort stage (set to Don't Sort, Already sorted) before the Aggregator and it didn't seem to do the trick. However, I hadn't changed the Partitioning / Collecting option inside the Aggregator Input tab from the default of Auto. Do I need to Hash on the grouping key and then c...
by chulett
Wed Nov 25, 2009 7:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator group change
Replies: 9
Views: 2485

OK, what if my data is already sorted? Is there any equivalent to the Sort stage's "Don't sort, already sorted" functionality?
by chulett
Wed Nov 25, 2009 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator group change
Replies: 9
Views: 2485

Aggregator group change

Another PX Aggregator question - when grouping and summing, it is possible to get it to output records on a group change rather than hold onto everything and only output once all inputs have been processed? Looking for the equivalent on the Server side where you can assert that the input is sorted b...
by chulett
Wed Nov 25, 2009 12:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert new rows(with the same key) breaks the run!
Replies: 7
Views: 9797

DRS set to Oracle should generate the same contraint violations, suspect you mean via ODBC, yes?
by chulett
Wed Nov 25, 2009 10:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert new rows(with the same key) breaks the run!
Replies: 7
Views: 9797

You need a lookup for that so that you don't even attempt the insert if the row already exists. That or use a combo action so when the insert fails an update can be done.
by chulett
Wed Nov 25, 2009 10:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UNIX Return Code 127
Replies: 5
Views: 4817

An exit status of zero would indicate success.
by chulett
Wed Nov 25, 2009 9:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UNIX Return Code 127
Replies: 5
Views: 4817

Can you post the complete log entry that shows the Execute Command stage running and what it returned?
by chulett
Wed Nov 25, 2009 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to trim Special Character
Replies: 7
Views: 2410

gssr wrote:Do i have to mention Char(9) for it?
Yes. And that is the resolution, not a 'workaround'.
by chulett
Wed Nov 25, 2009 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to get file from another Server
Replies: 22
Views: 5796

People will be happy to 'guide' if you have specific questions but no-one is going to type up a complete lesson, for that there's the documentation and Help button inside the stage. However, you will not be able to use the FTP stage with anything that's not a plain old sequential file - i.e. no RAR ...