Search found 53125 matches

by ray.wurlod
Thu Jan 28, 2010 3:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file Limit
Replies: 11
Views: 8697

You have DataStage, so you do have DataStage shell.
by ray.wurlod
Thu Jan 28, 2010 3:05 am
Forum: General
Topic: Time Difference
Replies: 2
Views: 1237

Isolate the date and time components. Convert them into internal format, convert the days into seconds, and perform the arithmetic. The result is in seconds - it can be subsequently converted with simple arithmetic using standard arithmetic.
by ray.wurlod
Thu Jan 28, 2010 2:59 am
Forum: General
Topic: diffrence between the Sort and Remove Duplicate stages
Replies: 1
Views: 3108

The Remove Duplicates stage (which requires sorted input) gives you the ability to specify preservation of the First or Last record in each group. The Sort stage (with "unique" set) does not.
by ray.wurlod
Thu Jan 28, 2010 1:19 am
Forum: IBM QualityStage
Topic: A small number of block size is large. Is it ok?
Replies: 3
Views: 1579

Did the job report use of block overflow? If not you're within reasonable sizes.
by ray.wurlod
Thu Jan 28, 2010 1:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file Limit
Replies: 11
Views: 8697

Welcome aboard.

RESIZE command must be issued in a DataStage shell (dssh), not in a DOS shell (cmd).

Do not change the uvconfig entry.

If you want to create a 64-bit hashed file, you can't do it with the hashed file stage, but you can do it through the ExecTCL before-job subroutine.
by ray.wurlod
Thu Jan 28, 2010 12:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Backend Process
Replies: 1
Views: 2006

This is not useful information from the point of view of being a competent DataStage developer or even administrator. When a job is compiled, what happens depends upon the job type. It's different for all four job types. Indeed, the very notion of "back end" may be different - mainframe jo...
by ray.wurlod
Wed Jan 27, 2010 7:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: .odbc.ini
Replies: 2
Views: 1593

ODBC protocols refer to "data sources" rather than "servers". Of course you can have multiple DSNs for the same database, but it doesn't gain anything except, perhaps, greater ease/understanding of management.
by ray.wurlod
Wed Jan 27, 2010 7:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scratch space help needed
Replies: 12
Views: 5372

The process table is part of the operating system, not of DataStage. The process ID is effectively the row identifier in this table (although memory is managed better than that; rows are removed from memory when a process terminates).
by ray.wurlod
Wed Jan 27, 2010 7:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Node with CPU relations
Replies: 3
Views: 1313

Node, in DataStage parallel execution parlance, is one subdivision of processing and data partitioning. It has no relationship at all with hardware configuration. There may be many processes running on each node and, as Craig noted, it's up to the operating system on that node's machine (its fastnam...
by ray.wurlod
Wed Jan 27, 2010 7:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle plugin not reading parallel
Replies: 15
Views: 7217

Have you tried using the Oracle Connector stage (new in version 8.1)?
by ray.wurlod
Wed Jan 27, 2010 7:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle plugin not reading parallel
Replies: 15
Views: 7217

Yes, but Oracle only gives a single stream from the result set.

Have you set the Partition Table property?
by ray.wurlod
Wed Jan 27, 2010 7:37 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: start and stop the WISD jobs
Replies: 7
Views: 4552

There's not really enough information - or, it depends.

For example, do you have "always running" or "start on demand" jobs? Are they multi-instance or not?
by ray.wurlod
Wed Jan 27, 2010 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL ERROR : Really Wierd
Replies: 3
Views: 1173

That'll do it nearly every time!
by ray.wurlod
Wed Jan 27, 2010 3:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Challenging Task
Replies: 5
Views: 1548

Of course it is, but what the stage variable - or even the system variable - will have is the total number of rows so far . So you would need an Aggregator to trap just the final value. And then you have the issue of how to get both values into the same row in the table without causing locking probl...
by ray.wurlod
Wed Jan 27, 2010 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle plugin not reading parallel
Replies: 15
Views: 7217

That's how the Oracle Enterprise stage works, unless the table is a partitioned table and you've programmed that knowledge into the stage.