Search found 53125 matches

by ray.wurlod
Sat Jul 19, 2008 3:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Huge Lookup Design Issue
Replies: 5
Views: 1290

If it helps any more, I just put into play a job that has a hashed file lookup involving over 20 million rows, a total of 1.2GB, and it works fine. We will need to monitor this and perhaps convert to 64-bit addressing if the data volume grows too much, but for now it's all good.
by ray.wurlod
Fri Jul 18, 2008 11:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Callingstor edprocedure in the datastage
Replies: 4
Views: 982

Or you can call such a stored procedure from an ODBC Enterprise stage.
by ray.wurlod
Fri Jul 18, 2008 11:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD stage implementation
Replies: 1
Views: 870

You create the state file (assuming that's the key generate mechanism you propose to use) with a job that has the Surrogate Key Generator stage with no links. You initialize the state file in a job that has the Surrogate Key Generator stage with an input link, that presumably receives the result of ...
by ray.wurlod
Fri Jul 18, 2008 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: strange compiling problem in transformer
Replies: 8
Views: 4744

We'll also need to know the data type of each column and stage variable mentioned in the code.
by ray.wurlod
Fri Jul 18, 2008 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort a job
Replies: 7
Views: 1913

What do you mean by "invalid"? A parameter value that is invalid based on data type - for example "FRED" as a date - will not even allow the job to start. Otherwise, use Arnd's offered solution, but limit the link to 1 record because 0 means "unlimited".
by ray.wurlod
Fri Jul 18, 2008 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: return error code with deffun fucntion ?
Replies: 8
Views: 2496

You can test whether the catalog entry exists with a query such as

Code: Select all

SELECT COUNT(*) FROM VOC WHERE F0 = 'DSU.FWKCommunLectureParam';
executed from the Administrator client.
by ray.wurlod
Fri Jul 18, 2008 3:07 pm
Forum: General
Topic: Error code and Description
Replies: 1
Views: 841

You have not really provided enough information. In short, however, use the appropriate stage type for inserting rows into the table, and figure out how you will capture the error code and description.
by ray.wurlod
Fri Jul 18, 2008 6:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential run
Replies: 14
Views: 3323

Example: A job that uses a Surrogate Key Generator stage to initialize a state file has no links and therefore has only one stage.
by ray.wurlod
Fri Jul 18, 2008 3:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential run
Replies: 14
Views: 3323

Because sequential processing is what you get on one node; a stage (operator) can create only one process on one processing node (unless it's a composite operator, which possibility was not canvassed in the question). Pipeline parallelism is between stages (operators), not within one stage, therefor...
by ray.wurlod
Fri Jul 18, 2008 3:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NOT CONNECTING TO PROJECT
Replies: 6
Views: 2655

You don't connect to a project any more.

You connect to IBM Information Server (machinename:9080) and authenticate there. That having been done, you will be presented with a drop-down list of DataStage server/project combinations, and can choose one from that list.
by ray.wurlod
Fri Jul 18, 2008 3:22 am
Forum: General
Topic: IBM INFORMATION SERVER 8.0.1 INSTALLATION ON WINDOWS XP
Replies: 1
Views: 958

It can be gotten to work on Windows XP Professional only, but you're on your own; no-one will support it, since Windows XP is not an officially supported operating system.
by ray.wurlod
Fri Jul 18, 2008 1:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential run
Replies: 14
Views: 3323

Looks like a question from a (practice?) certification exam to me.
by ray.wurlod
Thu Jul 17, 2008 10:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Huge Lookup Design Issue
Replies: 5
Views: 1290

1. Yes.
2. Yes, depending on the row size in the hashed file.
3. There are no limits if your hardware will support what you seek to do.
by ray.wurlod
Thu Jul 17, 2008 8:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: location of project directory/hashed files
Replies: 4
Views: 1174

If you have a UNIX emulator (such as MKS Toolkit) you can use the find utility, executing the DataStage UVfile command, to identify hashed files. If you prefer a more "pure" Windows approach, you can use the DataStage uvwalk utility to traverse your tree structure (and perform a UVfile command). You...
by ray.wurlod
Thu Jul 17, 2008 7:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job sequence issue need help
Replies: 7
Views: 2416

You're in trouble if "they" ever change the values, Amar. That's why the mnemonics such as DSJS.RUNOK are to be preferred.