Search found 85 matches

by ETLJOB
Wed Sep 08, 2010 1:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: improving the performance in transformer stage
Replies: 4
Views: 3215

Are you sure, the bottle neck is in transformer? What are the other stages you have used in the job? Are the performance statistics of the other stages looking good? Post your analysis please!
by ETLJOB
Mon Sep 06, 2010 3:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting error in DB2UDB enterpise stage while doing upsert
Replies: 5
Views: 3021

Did you try to Insert/Update data using any database access tool? If yes, was that successful?

Just to make sure you are not making any mistakes with schema/table/column names.
by ETLJOB
Fri Sep 03, 2010 3:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration file
Replies: 3
Views: 2644

echo $APT_CONFIG_FILE would give you the path for the config files
by ETLJOB
Wed Sep 01, 2010 3:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: find PO BOX in a string
Replies: 2
Views: 2258

Just try this...I haven't try my hands on this.

Code: Select all

If Count(Column_name,'PO BOX') > 0 Then 1 Else 0
by ETLJOB
Tue Aug 31, 2010 11:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading from dataset to new SQL table scrambles table layout
Replies: 5
Views: 3305

Uncheck the RCP option if it is enabled and give a try.

As an alternate, the table can be created in target first and you can use datastage to load.
by ETLJOB
Tue Aug 31, 2010 10:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading from dataset to new SQL table scrambles table layout
Replies: 5
Views: 3305

Is it a direct load or do you have some other logic in between?
by ETLJOB
Tue Aug 31, 2010 2:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job has to start after N records..?
Replies: 4
Views: 3147

Re: Job has be to satrt after N records..?

my qst is
"My question is"
how can u achieve
"How can you achieve"

Finally, why do you want to acheive this logic particularly in transformer?
by ETLJOB
Fri Aug 27, 2010 6:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: There are no sort keys in the dataset schema
Replies: 8
Views: 12602

Re: There are no sort keys in the dataset schema

I am just using Auto partition in all stages. Try to specify "ordered" or "round robin" collection methods in dataset and check the warnings are existing or not. I hope "sort merge" collection method automatically imposed by DataStage behind the scenes as you have a so...
by ETLJOB
Fri Aug 27, 2010 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 ENTERPRISE as Target
Replies: 1
Views: 2521

Just verify, whether the output format (date and time) of the function "CurrentTimestamp()" is matching with the timestamp format of the DB2 database field LST_UPDT_DTTM.
by ETLJOB
Fri Aug 27, 2010 4:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer stage problem
Replies: 7
Views: 4071

sequnum=(empno*2) - 1
I don't think "sequnum=(empno*2) - 1" would solve the purpose for the given sample data, considering the fact that employee number is not in sorted order.

I believe "sequnum=(@inrownum*2)-1" would do for you.
by ETLJOB
Wed Aug 25, 2010 3:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: locking table when update and insert in to the same table
Replies: 5
Views: 2837

Do you find any reason for the "UPSERT" option, not to work in your case?

Note: Post your questions in appropriate forum.
by ETLJOB
Tue Aug 17, 2010 4:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LookUp Stage Condition Specification Issue
Replies: 10
Views: 6262

Did you try "trim" functions by any chance?
by ETLJOB
Tue Aug 17, 2010 3:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LookUp Stage Condition Specification Issue
Replies: 10
Views: 6262

Convert data from the sources to Uppercase and do the lookup.