Search found 39 matches

by pankajg
Tue Sep 12, 2006 5:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture the warnings
Replies: 4
Views: 1564

I think you can do this by using DSGetLogSummary

U wil need to write a routine and use the function DSGetLogSummary, the result of which you can store or write to a file and then load that file into the database.

Check out the BASIC guide for more information on DSGetLogSummary.
by pankajg
Tue Sep 12, 2006 2:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Metadata validation on source.
Replies: 1
Views: 904

Metadata validation on source.

Is there a way to have DataStage perform data type validiation ? What I mean is, Is it possible to perform meta data validation of incoming data ? I want to ensure that the source columns are of the same datatype as defined in the input column of the stage. Are such things possible in DataStage PX e...
by pankajg
Mon Sep 11, 2006 6:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing a shell script, passing encrypted passwords
Replies: 8
Views: 9177

Password??

Currently in our project we are making use of the environment variable, but we would definitely like to look at the scripting option, though I am not sure how.. 1> I am wondering how do I create a file with encrpted password?? As in somewhere in the script I will definitely need to mention the passw...
by pankajg
Wed Jun 07, 2006 4:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Of 10 instances just 1 instance fails.
Replies: 3
Views: 892

Of 10 instances just 1 instance fails.

Friends: I encounter a wierd problem, I have a job that has multiple instances. All instances run fine except one.. Now I am wondering why ..? From a few posts I figured out that a NULL is transformer could be an issue.. I check for NULL values if any in the transformer and I am sure that this is no...
by pankajg
Tue Jun 06, 2006 6:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help Help !! Failure during execution of operator logic.
Replies: 6
Views: 4645

Friends

I got a solution to this issue. The thing is that in the transformer I was trying to add NULL + NULL or NULL+<value> and so there was this error.
I fixed these NULLS using NULLTOZERO and it works absolutely fine.

Thanks ArndW, I believe you got me started.

Cheers !! :lol:
by pankajg
Tue Jun 06, 2006 1:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help Help !! Failure during execution of operator logic.
Replies: 6
Views: 4645

I am not using any operations in the transformer stage. And the field is set as nullable.
by pankajg
Tue Jun 06, 2006 1:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help Help !! Failure during execution of operator logic.
Replies: 6
Views: 4645

Help Help !! Failure during execution of operator logic.

Friends: I get the following errors 1. (Warning) APT_CombinedOperatorController(1),1: Field 'po_mcptm_othoutsum' from input dataset '0' is NULL. Record dropped. 2. (Fatal Error)xfm_StgDM2StgMN_po_vo_mob_temp,0: Failure during execution of operator logic. 3. (Fatal error) APT_CombinedOperatorControll...
by pankajg
Mon Jun 05, 2006 7:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rank like functionality in DataStage
Replies: 4
Views: 2723

chulett wrote:Isn't that just a matter of sort descending on calls and constrain to five rows? ...
No really, because I am looking for the top 5 contact for each customer.. Anyway, nice thought.. But how do I constraint to take top 5 contact for each customer?
by pankajg
Mon Jun 05, 2006 6:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rank like functionality in DataStage
Replies: 4
Views: 2723

Rank like functionality in DataStage

Friend: I am trying to create a parallel job wherein I need a Rank function like functionality. Scenario: Consider a Call phone customer who has a high usage of calls. Now I want to count the no of calls made by the customer to his contacts, and then list the top 5 contacts. I can easily do the firs...