Search found 46 matches

by nitkuar
Mon Nov 08, 2010 12:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assignment of a NULL value to a NOT NULL
Replies: 25
Views: 14876

Kenny,

If target is DB2 then $APT_ORACLE_PRESERVE_BLANK is not required.

Could you please also confirm that value given in $APT_PAD_CHAR variable is 0x20 and not 0X20.
by nitkuar
Mon Nov 08, 2010 11:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assignment of a NULL value to a NOT NULL
Replies: 25
Views: 14876

Thanks Craig, forgot about this possibility. :wink:
by nitkuar
Mon Nov 08, 2010 11:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: new line character as deimiter
Replies: 19
Views: 8997

I guess you are looking for the usage of UNIX newline as record delimiter.
by nitkuar
Mon Nov 08, 2010 11:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assignment of a NULL value to a NOT NULL
Replies: 25
Views: 14876

I guess, datatype of this field in source stage is also CHAR and you are using default pad character 0x00. That is the reason you are not able to compare it with null. Add $APT_PAD_CHAR environment variable in your job as job parameter and change its default value to 0x20. Then in transformer stage,...
by nitkuar
Mon Nov 08, 2010 10:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assignment of a NULL value to a NOT NULL
Replies: 25
Views: 14876

Code: Select all

If IsNull(DSLink44.user_name) then ' ' Else DSLink44.user_name
this should have been worked...please specify datatype and nullability of this column in transformer and your target stage.
by nitkuar
Mon Nov 08, 2010 6:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Float to Numeric conversion
Replies: 9
Views: 3824

The target column is numeric.. and the scale is 10..Is that why it is loading 10 digits???
what is scale and precision of this field specified in target column?
by nitkuar
Mon Nov 08, 2010 6:25 am
Forum: General
Topic: concat colmns in transformer if condition happens
Replies: 3
Views: 1775

if your IF conditions are finite, then create separate stage variable for each IF condition. Finally concatenate all stage variables in new column derivation.
by nitkuar
Mon Nov 08, 2010 6:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Aborting due to dead lock
Replies: 8
Views: 4021

and the HASH keys are like the columns Statecode,SPECIALTY_PRODUCT_INDIC etc, please explain it more clearly. Did you assign these keys as Hash Keys in datastage? Describe your job design as well and partitioning(if any) wherever mentioned. (how to run in single node if i had 2-node config file and...
by nitkuar
Mon Nov 08, 2010 2:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Constraint in transformer
Replies: 2
Views: 1625

equals to 1 here means that conditions(both) specified with the braces should be true.
Even if you remove '= 1' here, it should give same result.
by nitkuar
Sun Nov 07, 2010 12:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 API stage
Replies: 8
Views: 3056

not sure about this one, but I guess its related to NLS setting of your DB2 database.
by nitkuar
Sat Nov 06, 2010 8:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 API stage
Replies: 8
Views: 3056

Is there any other way to get rid of these special characters other than changing the datatype
Change $APT_PAD_CHAR value to 0x20 instead of default value 0x00 as job parameter
by nitkuar
Sat Nov 06, 2010 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data going to only one node.
Replies: 2
Views: 2228

Please explain about your job design, then only we would be able to answer your query.
by nitkuar
Thu Nov 04, 2010 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to highlight text?
Replies: 8
Views: 2208

As far as I know its NO, but wait for some other replies as well.
by nitkuar
Thu Nov 04, 2010 12:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null handling issue
Replies: 2
Views: 1960

I want to trim first and then check for null values empty string and null are two different things. If you are using modify stage just for this purpose, I don't think its a good idea. Moreover as you have mentioned that in source sequential you defined that column as nullable No, then in that case ...
by nitkuar
Thu Nov 04, 2010 12:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSet rejecting null records
Replies: 7
Views: 7580

I would also go with Kris and thinks that you are probably using transformation functions on this column without handling nulls explicitly.