Search found 42189 matches

by chulett
Wed Jun 13, 2007 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Probelm to attach the Px job in Job Activity of the Sequence
Replies: 8
Views: 1710

Search the forums here for a portion of your "XML parser" error string, from what I recall it's been discussed before and it's some kind of permissions error.
by chulett
Wed Jun 13, 2007 12:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Probelm to attach the Px job in Job Activity of the Sequence
Replies: 8
Views: 1710

Hmmm... that drop-down list doesn't show Folder names that I recall. What exact version of DataStage are you running?

Did you try the drag game? I use that pretty much exclusively nowadays, it is so much more convenient.
by chulett
Wed Jun 13, 2007 12:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data transfer from a dataset to a oracle table
Replies: 10
Views: 2063

Drop the 4th column before you get to the Oracle stage. Not a PX'er by any stretch, but couldn't you use a Modify stage for that? :?
by chulett
Wed Jun 13, 2007 12:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: This jobtype is not currently runnable on this platform
Replies: 2
Views: 1202

Yup. :wink:

Kudos for finding that information on your own, rather than making us explain it for the bajillionth time. :lol:
by chulett
Wed Jun 13, 2007 12:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Probelm to attach the Px job in Job Activity of the Sequence
Replies: 8
Views: 1710

Very good midnight to you. :D No, there's no setting needed for this. Please explain what "I am not able to browse the job" means. Are you saying that your job does not appear in the drop-down list in the Job Activity stage picker object? Make sure you look through the entire list of jobs available ...
by chulett
Tue Jun 12, 2007 11:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing partly sorted data into the Aggregator
Replies: 6
Views: 1413

That's good to know. I've been under the impression up until now that partially sorted data was as worthwhile as unsorted data - kind of an 'all or nothing' proposition to gain any value from it. Not sure why, never ran any tests one way or the other, just assumed that I guess. So it can still take ...
by chulett
Tue Jun 12, 2007 11:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To speed up the aggregator
Replies: 15
Views: 5784

As noted, many sort options exist, the specific stage is only one such option available. Check the Property Help for the Sort Specification in the stage, it has examples of the syntax needed. Yes, it's a little confusing if you've never used it before, but check the help and give that a shot. Just a...
by chulett
Tue Jun 12, 2007 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_uvput() - Write failed for record id
Replies: 4
Views: 3501

I don't believe so - isn't that 768? We're not anywhere near that.
by chulett
Tue Jun 12, 2007 10:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_uvput() - Write failed for record id
Replies: 4
Views: 3501

I see from the docs that having NLS enabled could change the behaviour of this - for the record, we don't. If that helps. All we do is override the value of $NLS_LANG in the job to AMERICAN_AMERICA.WE8MSWIN1252 if that makes any difference...
by chulett
Tue Jun 12, 2007 7:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob command
Replies: 25
Views: 9969

And what if the Sequence job itself aborts? The problem remains to be solved regardless of job type. :wink:
by chulett
Tue Jun 12, 2007 7:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Enable orachadmin
Replies: 4
Views: 1935

Ok. Or just this then:

Code: Select all

$APT_ORCHHOME/bin/orchadmin delete $Path/xxx.ds

I'd still make sure this bin directory is in your PATH somewhere.
by chulett
Tue Jun 12, 2007 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Enable orachadmin
Replies: 4
Views: 1935

There's nothing to 'enable', you just need to ensure it is in your $PATH. Try setting your environment to the DataStage environment by 'sourcing' dsenv first:

Code: Select all

cd $DSHOME
. ./dsenv

Then run your command again.
by chulett
Tue Jun 12, 2007 6:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSetJobLimit and DSJ_LIMITWARN
Replies: 7
Views: 4282

That sounds like a bug that should be reported to your Support provider. The behaviour should be the same in that scenario.
by chulett
Tue Jun 12, 2007 6:09 am
Forum: General
Topic: Primary Key for Staging Tables
Replies: 5
Views: 3661

The question is "Do staging tables in DW/DM need a Primary Key"? And the short answer is no. They don't fall under the general rule of being "a must for tables in a DW" as to me the staging area / back room "tables" are separate structures outside of the core DW itself.
by chulett
Tue Jun 12, 2007 5:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob command
Replies: 25
Views: 9969

Re: dsjob command

1) How can i trap the status of the job thru dsjob command. 2) If any job gets aborted then is it necessary to compile the job in the designer before running the dsjob command ? 1) Use the -jobstatus dsjob option as noted. The behaviour of it is well documented. 2) No. It does need to be RESET howe...