Search found 15603 matches

by ArndW
Fri Aug 06, 2010 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: facing a SIGINT error
Replies: 8
Views: 3363

Did you actually run the file with a 1-node configuration?
by ArndW
Fri Aug 06, 2010 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting less spaces in viewing the data from seqfile
Replies: 13
Views: 3299

Re: Getting less spaces in viewing the data from seqfile

data is of type varchar(50) ex: in seqfile : "GATEWAY NEW BUSINESS 14.9" while viewing from unix : "GATEWAY NEW BUSINESS 14.9 (I used code mark so that the spaces display) What tool are you using to "view" the data? If you read the file in DataStage and output a LEN(In.Stri...
by ArndW
Fri Aug 06, 2010 6:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join Stage error
Replies: 5
Views: 1767

Turning on RCP doesn't change the behaviour that 2 columns with the same name exist but only one can be output.
by ArndW
Fri Aug 06, 2010 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error message about field not found
Replies: 7
Views: 4456

What happens to the compile if you change the link name - does it remain the same? Also, is RCP enable for the link coming into the transform stage?
by ArndW
Fri Aug 06, 2010 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitions, Lookups, and Nodes
Replies: 11
Views: 2883

A couple of years back I did some performance testing between lookup filesets and dataset and, as a result of that testing, have not used lookup filesets since so I am not the one to answer these specfic detailed questions (unless you opted to try a normal dataset).
by ArndW
Fri Aug 06, 2010 5:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer in Datastage 8.1 Parallel job
Replies: 7
Views: 6851

Open up the repository tree structure and drill down unter "Stages" -> Parallel -> Processing -> BASIC Transformer and drag it across to your PARALLEL JOB canvas.
by ArndW
Fri Aug 06, 2010 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup error
Replies: 8
Views: 2183

This out of space error refers not to disk space, but to available memory for the lookup file set. Try to reduce the memory needed in the reference data: - remove unnecessary columns - declare all string as unterminated ones, removing the length definitions; since a value of "Hello" in a V...
by ArndW
Fri Aug 06, 2010 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicates of logical key loaded into dimension table
Replies: 13
Views: 5083

Kris - that is a good analysis of the problem and makes sense for the example given, which presupposes that every new record has an effective "EndTS" of HIGH-DATE. If that is not the case then the logic gets complex beyond the scope of stage variables.
by ArndW
Fri Aug 06, 2010 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connector behavior on connection parameter
Replies: 7
Views: 3341

We have only seen it intermittently as well. Conjecture was that it occurs somehow when doing a "save as" or perhaps when cut-and-pasting the stage from one job to another.
by ArndW
Fri Aug 06, 2010 1:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connecting two different db2 databases
Replies: 3
Views: 7208

I am a bit confused. Could you please post the actual warning message?
by ArndW
Fri Aug 06, 2010 1:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared Container not Found
Replies: 6
Views: 1596

Hmmm... I don't see how you could still have the error if you did what Ray suggested, since you wouldn't be compiling the job on production.
by ArndW
Fri Aug 06, 2010 1:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: facing a SIGINT error
Replies: 8
Views: 3363

Does the job run through if you change your commit size to 1 and/or if you run the job sequentially or with 1 node?
by ArndW
Fri Aug 06, 2010 1:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connecting two different db2 databases
Replies: 3
Views: 7208

What sort of "logs" are created with the lookup removed from your job? Was the lookup to one of the databases? What is your actual question or problem?

p.s. The "FAQ" discussion is for frequently asked questions.
by ArndW
Thu Aug 05, 2010 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicates of logical key loaded into dimension table
Replies: 13
Views: 5083

Because you can get multiple updates in one run, a transform stage with stage variables isn't sufficient. One input can generate 2 outputs, the next input might have an overlapping period on the 2 records and thus involve 2 update on the existing records (to terminate them), and two inserts for the ...
by ArndW
Thu Aug 05, 2010 9:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating new rows of records.
Replies: 12
Views: 3953

From your example it is unclear what you want to achieve. Is it that for each input record you want to make exactly 3 output records, one for 2008, 2009 and 2010 respectively?

If so, why not a transform stage with 3 outputs (one for each year) then a funnel stage?