Search found 15603 matches

by ArndW
Sat Jan 05, 2008 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: usage of Server shared container in parallel job
Replies: 5
Views: 1393

Ray, I just checked as well - U2 files can't be accessed readily using ODBC in EE/PX jobs. Not even at version 8. Strange that more esoteric ODBC connections are available but not UV. I wonder why this wasn't done, perhaps to dissuade developers from keeping hashed files when converting from server ...
by ArndW
Sat Jan 05, 2008 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Nodes
Replies: 4
Views: 1479

Ray - I thought it had already been moved.
iamnagus - Please ignore my post until the moderator moves the thread :|
by ArndW
Sat Jan 05, 2008 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: usage of Server shared container in parallel job
Replies: 5
Views: 1393

I'm not sure if one cannot declare a hashed file in an ODBC stage in PX - I can't check right now, but would assume that this ought to be a simple matter to include in the ODBC configuration.
by ArndW
Sat Jan 05, 2008 6:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Nodes
Replies: 4
Views: 1479

The number of Nodes in an APT_CONFIG configuration and the number of CPUs on a system have absolutely nothing to do with each other. You can run a 100 node configuration on a single CPU system or a 1-node configuration on a 64 CPU system. The configuration file tells DataStage how many levels of par...
by ArndW
Sat Jan 05, 2008 6:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Failure
Replies: 2
Views: 906

Off the top of my head:

(a) Full moon and Venus is visible,
(b) Computer is hungover and cannot remember where table is
(c) The data is too heavy for the CPU and cannot be lifted.

Seriously, though - the most common cause of looup failure is when the lookup fails.
by ArndW
Sat Jan 05, 2008 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ulimit problem
Replies: 19
Views: 6268

I think that your ulimit settings for root are limited, since that user spawns the other processes this is where you limitations are inherited from at runtime.
by ArndW
Fri Jan 04, 2008 12:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LookUp Problem
Replies: 7
Views: 1607

Put in an additional column for testing, setting it to 1 if "In.Code_val_c=' '" and 0 otherwise and you'll know the answer.

I doubt that you correctly set the nullable attribute in the DB column, otherwise failed lookup column will be coming back as null.
by ArndW
Fri Jan 04, 2008 12:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to genarate keygenarate next value from the given format
Replies: 5
Views: 1403

Question 1 You can look at the source code of KeyMgtGetNextValue in the manager and you can see where it generates the starting value. Make your own copy of this routine and then modify the starting value to be 100000. Question 2 Define your column as a numeric one, DataStage will do the conversion...
by ArndW
Fri Jan 04, 2008 12:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LookUp Problem
Replies: 7
Views: 1607

Set the column Code_val_c to be nullable from your lookup and try again.
by ArndW
Fri Jan 04, 2008 11:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LookUp Problem
Replies: 7
Views: 1607

Welcome to DSXchange, arunselvaraj. (that red is very difficult to read) If the column coming from the lookup is declared as nullable=Yes and your lookup is set to "continue" on failed lookups then the value will be null. What are your nullability settings in your job and please explain which column...
by ArndW
Fri Jan 04, 2008 11:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetStageInfo () return -7 while trying to get the Dataset
Replies: 1
Views: 922

DSGetStageInfo() doesn't take a DataSet name, it takes a stage name as input. You can get the row information from the DSGetLinkInfo() routine, using the input link name and stage name.
by ArndW
Fri Jan 04, 2008 11:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine in Job Sequence takes longer
Replies: 11
Views: 3063

I really should have looked at the thread. There is a bug in DataStage regarding attaching to the job that is running. The documentation states you can't do it, but you actually can --- the side effect is that the job "hangs" for a long time a while doing this. I had this problem a couple of years a...
by ArndW
Fri Jan 04, 2008 10:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine in Job Sequence takes longer
Replies: 11
Views: 3063

Bingo - Craig, you might have gotten it there. A difference between testing the routine from the manager and running the job from a sequence is just that - that the DS_JOBS entry for the sequence itself is locked in the latter case. Normally, I cannot see how a read lock should affect this simple SE...
by ArndW
Fri Jan 04, 2008 10:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failure During Execution of Operator Logic
Replies: 29
Views: 17148

Can you replace the 3 parameters 1 by 1 to see which one is causing the error? My guess would be something to do with the password...
by ArndW
Fri Jan 04, 2008 10:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation Error for parellel transformer stage
Replies: 6
Views: 3162

Apart from looking at the missing dll error message in your log, if you can compile a job without a transform stage but cannot compile one with a transform stage then either you don't have the correct compiler installed or it is not configured correctly.