Search found 41 matches

by nayanpatra
Mon Mar 07, 2011 6:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: current date () to julian date (YYDDD)
Replies: 8
Views: 6380

I think the function JulianDayFromDate may help.
by nayanpatra
Thu Feb 03, 2011 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage jobs not compiling
Replies: 6
Views: 4489

It may be a software installation issue.
by nayanpatra
Wed Feb 02, 2011 10:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatype issue:
Replies: 7
Views: 3344

You may also try with DECIMAL(15,0) and not INTEGER(15,0)
by nayanpatra
Tue Feb 01, 2011 11:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem DB2 Enterprise stage
Replies: 7
Views: 3953

Are the server name and user name same?
by nayanpatra
Tue Feb 01, 2011 10:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting zero records from the aggregator
Replies: 6
Views: 3870

If the output column definitions from all the 4 aggregated links are same, then its better to use funnel, else use a join stage.
by nayanpatra
Tue Jan 25, 2011 6:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic for Implementing Months
Replies: 7
Views: 3486

I am not aware of any... Are you facing any problem in implementing the lookup file???
by nayanpatra
Tue Jan 25, 2011 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic for Implementing Months
Replies: 7
Views: 3486

You can create a file having all the months(month number, month name) and lookup into it with the month number to fetch the corresponding month name.
by nayanpatra
Tue Jan 25, 2011 5:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: calling environmental varible in transformer stage
Replies: 6
Views: 2860

The derivation should not start with $ for job parameters in a transformer stage
by nayanpatra
Tue Jan 25, 2011 3:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: logic implementation
Replies: 2
Views: 1229

Read the input records into a transformer stage. Now give 2 output columns: Cash_receipt_id: Populate the input Cash_receipt_id Amount: If Status = Cleared Then Amount Else (-1) * Amount Now add the Amount field group by Cash_receipt_id in aggregator stage and you will get the desired output. Note: ...
by nayanpatra
Tue Jan 25, 2011 3:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement this logic
Replies: 3
Views: 2208

Is the data coming in any sequence/sort? Is the case deals with comparision between every 2 successive record? What happens to the 6210 event record? Please clarify these doubts to help you.
by nayanpatra
Fri Jan 21, 2011 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML InputStage Write Issue
Replies: 11
Views: 5600

From the example that you gave, I think will have only 2 columns in the output

Customer name: /customerlist/customer/customername/text()
Customer type: /customerlist/customer/customertype/text()
by nayanpatra
Sat Jan 15, 2011 9:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to generate a sequence number in transformer
Replies: 10
Views: 33515

If the surrogate key stage is not available to you, you may take the help of stage variables present in the transformer stage. SV + 1 : SV (Initialize it to 0) Move this SV into your surrogate key column. So, when the first record comes the SV is set to 0. After executing the above statement, the va...
by nayanpatra
Sat Jan 15, 2011 9:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling rejected data
Replies: 5
Views: 3018

Please have a look at the following design- Input rejected records -> Transformer1 -> Funnel1 -> Transformer2 -> Funnel2 -> Reject Table Load I am taking the following records for example. Input record Key1 Key2 Field1 Field2 Field3 Field4 Field5 Correct K11 K21 F11 F21 F31 F41 F51 Reject1 K12 K22 F...
by nayanpatra
Sat Jan 15, 2011 8:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue loading data using Oracle Enterprise stage
Replies: 6
Views: 2201

The table could be in load pending state. In that case you may need to release it. I would also like to know which database you are using. I mean to say if you are using a native stage for database loading then it would give better performance. Indexing on the update key column may also play a vital...
by nayanpatra
Tue Apr 06, 2010 12:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove special characters
Replies: 1
Views: 2078

You can check with the ASCII values