Search found 6797 matches

by DSguru2B
Thu Mar 02, 2006 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loop in Transformer
Replies: 12
Views: 6760

The solution to this would be if you find a logic to reverse group the data. the data that you show is grouped by two fields.
by DSguru2B
Thu Mar 02, 2006 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cleanse/Confirm Question ?
Replies: 25
Views: 8033

This is known as Code to Name or Name to code Look-up. :!: :!: :shock: These translations are defined by the users. KAPS, you stated the question in a wrong way. This is not called cleanse/confirm. :x The most effecient and generic way to do this is using Hashed files in Server or Lookup stage in EE...
by DSguru2B
Thu Mar 02, 2006 2:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insert and update the records to sqlserver
Replies: 17
Views: 8114

Tell me this samba,
when a record gets updated in your source table, is there any column there that stores a timestamp which tells you when this record was last updated?
by DSguru2B
Wed Mar 01, 2006 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: packed decimal value, how to supress zeros
Replies: 5
Views: 3959

Probably whats happening is that you are trying to load the Null values in a Sequential file. This will not be handled, hence DS is converting the nulls to a default.
I would recommend a peek stage to be added to all the jobs and observe the data there and post your observation.
Thanks.
by DSguru2B
Tue Feb 28, 2006 7:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to avoid NULL to reject - in SWITCH case
Replies: 20
Views: 8527

Kumar,
Did u try handling it with the IF ISNULL(LINKNAME) logic?
I had this problem as well, you might want to check the logic for the condition too which is defaulted to Reject. ( this will be in a lookup stage).
by DSguru2B
Tue Feb 28, 2006 6:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change capture warnings
Replies: 9
Views: 9564

This also often happens when the datatypes and the nullabilties of the columns are not in sync. As I mentioned in my other post, Datastage Enterprise Edition is very sensitive with handling nulls. And due to this you might see ripple effects in different stages. Better to follow the steps shown by K...
by DSguru2B
Tue Feb 28, 2006 6:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timestamp format
Replies: 8
Views: 2450

You should go by the book. :D
by DSguru2B
Tue Feb 28, 2006 6:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datasets having 30 M worth of data
Replies: 5
Views: 2156

A lookup stage for looking up 30M rows is not a good idea. The processes will die very often.
As said by the DS Manuals and Burney, Join Stage should be your first option for this.
by DSguru2B
Tue Feb 28, 2006 6:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ETL errors while running batch schedule
Replies: 13
Views: 10552

I have gone through this problem alot. This happens when the box configuration is not modified. Meaning. the Cache space for OSH should be increased from a default of probably 256mb to 1G which would be helpful enough. This shall be done by the unix admin.
Ray.. please comment or correct me.
Thanks
by DSguru2B
Tue Feb 28, 2006 6:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: null metadata
Replies: 8
Views: 3236

Another way to handle nulls in EE is that you have to take care of the nullability of the columns. EE is very sensitive in this case as compared to Server. So better take care of that, else it will result in numerous fatal errors.
Hope it help.
by DSguru2B
Tue Feb 28, 2006 6:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: coldescfailed
Replies: 4
Views: 1446

Does the extract even run?
Do select on the target and see if it loaded or not.
by DSguru2B
Tue Feb 28, 2006 4:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Like Operator in Transform
Replies: 4
Views: 1867

Here, try this. It works for me. I bet it will work for you

If trim(tpo_loan_orig_out.PRODUCT_DESCRIPTION) Matches "...alloo..." Then "Y" Else "N"
by DSguru2B
Tue Feb 28, 2006 1:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: time from string
Replies: 13
Views: 5081

Actually i already did build a routine. For the very same reason that it is needed more than once in quite a number of different jobs.
Thanks everyone guys.
by DSguru2B
Tue Feb 28, 2006 1:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: time from string
Replies: 13
Views: 5081

Thanks naveen. i basically did the exact same thing you mentioned but in the transformer itself. I guess it would be better to put it in a routine.
Thanks once again naveen.