Search found 11 matches

by navistar
Mon Nov 10, 2008 9:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To getTable Counts for multiple tables using DataStage job
Replies: 1
Views: 1960

To getTable Counts for multiple tables using DataStage job

Hi Friends, I have a series of PX jobs that copy data from tables in one schema to another schema with one job for copying each table. All the tables in the source and target schema are exactly the same and these jobs copying each table use a change capture stage to compare the tables and then do t...
by navistar
Thu May 01, 2008 10:43 am
Forum: General
Topic: JobName of the failed job while sending e-mail notification.
Replies: 6
Views: 3774

ArndW, than you for your insights on this problem of mine. I used the User Variables Activity stage in my job sequence and I am able to pass the JobName of the failed job to the E-mail Notification Activity. But I am not sure if I can use this passed variable in the E-mail Body of this activity. I a...
by navistar
Thu May 01, 2008 7:00 am
Forum: General
Topic: JobName of the failed job while sending e-mail notification.
Replies: 6
Views: 3774

JobName of the failed job while sending e-mail notification.

DSFriends, I have a job sequence which has 10 jobs. When one of these jobs fail, I route it through a sequencer activity and send out an e-mail notification (using notification activity) before aborting it using UtilityToAbortLog from Routine activity. On a job failure, I also write out the job name...
by navistar
Wed Apr 23, 2008 9:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGSEGV Error (Due to NULL and non-NULL values TIMESTAMP)
Replies: 3
Views: 2545

Thank you John for that insight.

Would anyone be able to help me know more about this patch from IBM and how to get that?

Cheers!
by navistar
Wed Apr 23, 2008 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGSEGV Error (Due to NULL and non-NULL values TIMESTAMP)
Replies: 3
Views: 2545

SIGSEGV Error (Due to NULL and non-NULL values TIMESTAMP)

Friends, While executing parallel jobs to insert/update records on to an Oracle table using Oracle Enterprise stage, I am getting a SIGSEGV error message from the Oracle Enterprise Stage. Error Message: Operator terminated abnormally: received signal SIGSEGV This table has 4 date fields, CREATE_DT, ...
by navistar
Fri Mar 21, 2008 9:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete Change Code value while using Change Capture Stage.
Replies: 4
Views: 18206

kumar_s: Thank you for the reply. Why don't I need the values? - Because, as I mentioned in my original post, I am trying to create a Change Detect dataset by merging the Change Dataset from Change Capture Stage and the Before dataset records. Can I make those Delete record columns NULL or empty? - ...
by navistar
Fri Mar 21, 2008 8:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete Change Code value while using Change Capture Stage.
Replies: 4
Views: 18206

Delete Change Code value while using Change Capture Stage.

Greetings Friends, I am using a Change Capture stage to figure the changes between a Before dataset and After dataset. For clarity purpose, let me show you the layout of the before and after datasets. (Both of them have the same column list, as they are extracts of the same table from different envi...
by navistar
Thu Mar 06, 2008 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic Lift & Load Job
Replies: 1
Views: 1329

Generic Lift & Load Job

Hi Folks, I need to migrate 250+ tables from DB2 to Oracle. The mappings are straight forward one to one mappings. Currently I am creating jobs for each of these tables as follows DB2 UDB -------------->Transformer ---------------------> Oracle Enterprise Since all these jobs have the same design de...
by navistar
Mon Feb 25, 2008 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join or Lookup? Handling predicates in user-defined SQL.
Replies: 1
Views: 1469

Join or Lookup? Handling predicates in user-defined SQL.

DSFriends, I have a situation that needs to be handled as follows... Input(s): Link1 - Oracle Enterprise stage which selects from TableA with col1 as Key column SQL : Select col1 from TableA Link2 - Another Oracle Enterprise stage with a user-defined SQL accessing data from Table B having a 'WHERE' ...
by navistar
Fri Feb 15, 2008 12:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add thousand-separator comma's to decimal field
Replies: 7
Views: 8363

I am using a Parallel tranformer stage, and the source field is decimal. I need to do a DecimaltoString conversion first on the source field, which I did as follows... DecimalToString(Ilink1.Money,"fix_zero,suppress_zero"). I took the output from this parallel transformer to a next stage, ...
by navistar
Thu Feb 14, 2008 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add thousand-separator comma's to decimal field
Replies: 7
Views: 8363

How to add thousand-separator comma's to decimal field

Folks,

I have a Decimal(11,2) amount field, which I want to add thousand-separator to and insert to a target Varchar2 field.

For e.g. 25000.50 should be 25,000.50.

What function could be used?

Thx.