Search found 53125 matches

by ray.wurlod
Fri Nov 18, 2005 8:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination of Jobs
Replies: 4
Views: 1433

Do you claim that this occurs in every job, at the same line number?? Is your design DRS ---> Transformer ---> HashedFile or is it more complex than that? Please describe everything that you do in the Transformer stage: stage variable initialization expressions, stage variable derivation expressions...
by ray.wurlod
Fri Nov 18, 2005 8:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the diff between DB2 API and DB2EE stage
Replies: 3
Views: 1353

If we use DB2 EE stage to extract the attributes, is it improve the perforamnce ? How about you test it and you tell us? In theory, because the Enterprise stage can work in parallel, it ought to give better throughput, but your SQL may result in sequential operation - for example if it includes GRO...
by ray.wurlod
Fri Nov 18, 2005 12:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting environment variable
Replies: 3
Views: 983

Not possible. You can certainly set an environment variable in a stage variable, but other stages are almost certain to run in other processes and therefore get their own environment. How do you propose to get the environment variable in the "other stage" and what kind of stage is it? You may prefer...
by ray.wurlod
Fri Nov 18, 2005 12:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS 7.5 EE Solaris to DS 7.5 EE windows
Replies: 2
Views: 844

The main one is that you won't get support. There is no version of DS 7.5 EE that is supported on / certified for Windows 2000. The only 7.5 EE release is 7.5x2, and it's only certified for Windows 2003. Other than that, it may work, it may not. There's only one way to find out. Clearly some aspects...
by ray.wurlod
Thu Nov 17, 2005 9:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error
Replies: 16
Views: 5564

The original problem seems to relate to the SeqFile variable in the ReadU statement. (Unrelated question: why use this name for a hashed file? It only confuses future developers.) For some reason there is a path through your code where SeqFile does not get a value (or Initialized has a non-zero valu...
by ray.wurlod
Thu Nov 17, 2005 9:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ora Oci 8 not loading to the table
Replies: 6
Views: 1691

You're lucky it's after the 9th of the month and after September, so you're automatically getting two-digits in the month and day. You need to force two digits as follows:

Code: Select all

Oconv(Date(), "D-YMD[4,2,2]") : " 00:00:00"
by ray.wurlod
Thu Nov 17, 2005 9:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to get data from databrowser for Universal Local UV
Replies: 9
Views: 3198

It shouldn't have worked. Can you post the text of the script? This will help us to understand what you did.
by ray.wurlod
Thu Nov 17, 2005 9:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export ActiveX
Replies: 2
Views: 1648

Any COM object should expose its methods to anything that calls it. All you need is to figure out how. The dsobjects.dll is not well documented, though most of the objects are described fairly well in a UniVerse manual called UniObjects Developers Guide which you can download from IBM's web site. Th...
by ray.wurlod
Thu Nov 17, 2005 9:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: KeyMgtGetNextValueConcurrent(), Server Container, PX Job
Replies: 6
Views: 1854

You can't reliably use any routine that uses variables in COMMON (see the end of Chapter 2 of Parallel Job Developer's Guide for proof). This particular routine does use COMMON, so is not appropriate for use in a parallel job.
by ray.wurlod
Thu Nov 17, 2005 9:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Max Lookups
Replies: 3
Views: 906

Not to mention flooding the machine with processes!
by ray.wurlod
Thu Nov 17, 2005 9:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parsing Raws to extract values
Replies: 2
Views: 807

Possibly. What do you mean by "checking"?
by ray.wurlod
Thu Nov 17, 2005 9:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: documentation of engine command
Replies: 4
Views: 1205

ALL of them. It's a non-trivial exercise to learn them all. I've been doing so for more than 20 years. There are no short-cuts - you need 20 years to get 20 years worth of experience. But don't worry about it - it's almost impossible to invoke UniVerse commands from parallel jobs, and you've posted ...
by ray.wurlod
Thu Nov 17, 2005 9:05 pm
Forum: IBM QualityStage
Topic: How does QualityStage work together with Datastage?
Replies: 1
Views: 2167

QualityStage currently can work independently of DataStage (processing files), or it can be invoked via a plug-in stage in which rows are passed to and fro along links as with any other DataStage stage. In the next (Hawk) release QualityStage per se ceases to exist and there is a combined Designer f...
by ray.wurlod
Thu Nov 17, 2005 9:00 pm
Forum: IBM QualityStage
Topic: error reading server reports and dat files
Replies: 5
Views: 2803

Alas, I don't know whether they have a fix. Have you formally reported this problem via your support provider?
by ray.wurlod
Thu Nov 17, 2005 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can i insert nulls in to a table in ora oci
Replies: 3
Views: 765

Yes, provided that the date column is not declared to be NOT NULL.