Search found 53125 matches

by ray.wurlod
Wed Jul 23, 2008 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load error into Oracle
Replies: 10
Views: 3618

Search also for bad file(s), possibly on the scratch disk for the partition indicated in any error message.
by ray.wurlod
Wed Jul 23, 2008 5:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with partitioning
Replies: 2
Views: 811

Are you trying to read from the File Set using a different configuration file (APT_CONFIG_FILE) than the one that was being used when the File Set was created?
The fact that there are node names not found suggests to me that that's the root cause of the problem that you are encountering.
by ray.wurlod
Wed Jul 23, 2008 5:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bulk Load to MySQL database
Replies: 3
Views: 2301

There is no bulk load facility of which I'm aware. ODBC is best because (again, as far as I am aware) it is the only mechanism for accessing MySQL from DataStage. Or any other client for that matter.
by ray.wurlod
Wed Jul 23, 2008 3:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Fixed width file from Sequential file
Replies: 7
Views: 1719

Please post your metadata. We can not tell without knowing that. The record schema will suffice.
by ray.wurlod
Wed Jul 23, 2008 3:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD stage output
Replies: 8
Views: 2863

What version are you using, and what FixPack levels have you already applied?
by ray.wurlod
Wed Jul 23, 2008 3:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log report
Replies: 7
Views: 1606

It can, but only if one of the uvconfig parameters is changed to permit it.
by ray.wurlod
Wed Jul 23, 2008 2:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No project access
Replies: 7
Views: 4206

The error on sh is probably because your PATH is not set up properly to include the MKS Toolkit bin folder.
by ray.wurlod
Wed Jul 23, 2008 2:31 am
Forum: IBM QualityStage
Topic: Multiple words substitution in QS standardization stage
Replies: 2
Views: 1605

Welcome aboard. Do you have many of these substitutions to perform? If not, how about an input text override in the rule set?
by ray.wurlod
Wed Jul 23, 2008 1:29 am
Forum: IBM QualityStage
Topic: How to merge USADDR rule set's output field?
Replies: 10
Views: 4180

It's probably easiest to reformat using a DataStage job.

This will stand you in good stead for the future, when QualityStage is much more tightly integrated with DataStage, and operators such as FFC disappear from QualityStage.
by ray.wurlod
Wed Jul 23, 2008 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Round robin partition
Replies: 1
Views: 1276

Because there is a minimum quantum of data that DataStage moves at a time. 24/26 is close enough to evenly spread.

For what it's worth, Round Robin is almost certainly completely wrong for your Join and Lookup stages.
by ray.wurlod
Wed Jul 23, 2008 1:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job consuming more memory
Replies: 1
Views: 600

Why? Memory is a resource to be used. Is there spare memory available? Then don't worry about it. You have not told us much about these jobs. Do they use hashed file cache, do they do sorting, are there any Aggregator stages? These are just some of the components that will make larger demands on mem...
by ray.wurlod
Wed Jul 23, 2008 12:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage 8.0.1 version is transformer advised to used??
Replies: 8
Views: 2255

The philosophy is "one stage, one task". If ALL you want to do is copy, then a Copy stage is way more efficient. The Transformer stage is an aberration. It's been put in so that you don't have to create buildops for every single transformation. These days, if you examine the code generated by compil...
by ray.wurlod
Wed Jul 23, 2008 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: buildop operator
Replies: 2
Views: 1717

The workaround is obviously to do it right. How many outputs do you have? What do you think transferAndWriteRecord(1) will achieve?
by ray.wurlod
Wed Jul 23, 2008 12:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: promblem of AT.EXE
Replies: 2
Views: 1167

Any solution for this? Doubt it. You are trying to make AT do things that it just doesn't do. Or, at least, wishing that you could. I guess, if you knew enough about Windows internals, you could write some code that interrogated the internal structures where AT stores its queued jobs, but that's ou...
by ray.wurlod
Tue Jul 22, 2008 11:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: About Hashed File Memory Usage
Replies: 5
Views: 1002

If you do not enable pre-load to memory each record is logically read from disk. In practice very few of these I/Os will be physical I/Os, because the relevant pages are likely to be in memory - either main memory or in the disk controller's memory. Even so a hashed file is likely to out-perform eve...