Search found 62 matches

by Daddy Doma
Thu Aug 28, 2008 10:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Found this on wikipedia
Replies: 14
Views: 6106

Ultramundane,

What has been the response from IBM when you raise this issue with them?
by Daddy Doma
Tue Aug 12, 2008 5:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not view Performance Statistics
Replies: 6
Views: 3679

Are your jobs multi-instance? You will not be able to see performance statistics in the master job log files, only in the instances of the job.
by Daddy Doma
Wed Jan 23, 2008 8:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Large numbers hanging BASIC routine
Replies: 8
Views: 3958

Hi Ray,

EXACTNUMERIC was set as 15.

I experimented with different values all the way up to 57 and couldn't get rid of the '0.NanQ'.

When playing in Excel (which has an inbuild FACT function) I can work out the factorial up to 170 (7.2574E+306). 171 returns '#NUM!'.

Zac.
by Daddy Doma
Wed Jan 23, 2008 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Large numbers hanging BASIC routine
Replies: 8
Views: 3958

Hi Ray, First of all, my apologies for not marking topic as a Server job. It is a server job, simple sequential file to transformer to sequential file design. I've edited the original post to correct. We tried the PRECISION argument with no success - same results. For no good reason other then 'just...
by Daddy Doma
Mon Jan 21, 2008 5:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Large numbers hanging BASIC routine
Replies: 8
Views: 3958

The first thing that stands out is that for every loop pass the factorial is recalculated. When the SOH is large, this is inefficient. You're better off keeping the running factorial and just add the next value in with each pass. This efficiency will probably help out a bunch. Thanks Ken, you were ...
by Daddy Doma
Mon Jan 21, 2008 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Large numbers hanging BASIC routine
Replies: 8
Views: 3958

Large numbers hanging BASIC routine

Hi All, I've got some complex calculations to perform that require a loop process. My prototype was built in MS Access and handled the functionality with very few performance issues. I'm trying to implement in DataStage using a server job and routine. I pass my routine two arguments (ExpectedUsage a...
by Daddy Doma
Mon Mar 19, 2007 5:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the best way to stop a DB2 Load job running?
Replies: 4
Views: 4563

We thought we had looked at this. liborchsun.so is stored in our $PXHome/lib path, which is /data/edw/Ascential/DataStage/PXEngine.752.1./lib Our LD_LIBRARY_PATH in the Director log shows /data/edw/Ascential/DataStage/DSEngine/java/jre/lib/sparc/client:/data/edw/Ascential/DataStage/DSEngine/java/jre...
by Daddy Doma
Sun Mar 18, 2007 6:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the best way to stop a DB2 Load job running?
Replies: 4
Views: 4563

The exact message we get is: testDS_PrepLoad_Batch..JobControl (@countEpisode): Executed: dsrecords /data/edw/dev_01a/processing/EDW_IDS_DVP.EPISODE.ref.ds Reply=137 Output from command ====> ld.so.1: dsrecords: fatal: liborchsun4.so: open failed: No such file or directory Killed All good when run f...
by Daddy Doma
Thu Mar 15, 2007 10:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the best way to stop a DB2 Load job running?
Replies: 4
Views: 4563

What is the best way to stop a DB2 Load job running?

Hi Guys, We are trying to use the DB2 Load function for our tables and often get problems with the jobs hanging. Looking at the db2 log: Type = LOAD Database Name = DEDW Partition Number = 0 Description = OFFLINE LOAD ASC AUTOMATIC INDEXING INSERT COPY NO EDW_IDS_DVP.PARTY Start Time = 16-03-2007 12...
by Daddy Doma
Tue Feb 13, 2007 7:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SetNull() into a NOT NULL DB2 Column
Replies: 5
Views: 3114

Thanx Ray.

Where is this default functionality documented in the Developers guides?
Can the default value be changed? (I checked Edit Metadata on the column and could not see an option)
And, can the default functionality be switched off or a warning raised?

Regards,

Zac.
by Daddy Doma
Tue Feb 13, 2007 6:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SetNull() into a NOT NULL DB2 Column
Replies: 5
Views: 3114

Datatype conversion from NULL to NOT NULL occurs in the Transformer. The source column was VarChar(3) NULL. Derivation was: IF link.column ='' OR link.column = '_' THEN SetNull() ELSE link.column The target column was VarChar(6) NOT NULL. An empty string is passed out of the Transformer, into a data...
by Daddy Doma
Tue Feb 13, 2007 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SetNull() into a NOT NULL DB2 Column
Replies: 5
Views: 3114

SetNull() into a NOT NULL DB2 Column

Hi Guys, I have an example where a user has used SetNull() in a Transformer derivation to populate a column in DB2 that is NOT NULL. There is no warning message raised. The transformer passes the database column an empty string which is loaded into DB2. Does this seem right? Should a warning be gene...
by Daddy Doma
Tue Jan 30, 2007 6:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Quality via DSRoutine
Replies: 5
Views: 3130

Thanks for the responses, guys. Some feedback: Explicitly allocate memory for your variable inside the routine and then free it after making the return call. Tried this and the SIGSEGV error is gone! Can you try describing your "empty" strings in code as '\0' ? We tried this for both input...
by Daddy Doma
Tue Jan 30, 2007 1:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Quality via DSRoutine
Replies: 5
Views: 3130

Follow up question: what is the performance overhead of implementing this business rule in a BASIC Transformer? Derivations throughout this project are very simple for the most part, just changing names, some IF statements, and assessing if dates are valid and/or within a parameter-driven range. It ...
by Daddy Doma
Tue Jan 30, 2007 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Quality via DSRoutine
Replies: 5
Views: 3130

Data Quality via DSRoutine

(Related topics to this issue have been posted before, and I am familiar with the potential causes of my problem - seeking advice on a specific solution) The Background: I have a need to convert invalid data to {Null} throughout my project. My intention is to develop and maintain a single DSRoutine ...