Search found 14 matches

by hari4dsx
Tue Mar 15, 2011 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to pick minimum value from each group using aggregator
Replies: 5
Views: 5424

Hello Ravi, The input we have is : GroupNO, GDate 200, 2009-03-02 100, 2010-01-01 100, 2009-02-02 200, 2008-03-02 The output we need is GroupNO, GDate 100,2009-02-02 200,2008-03-02 One way of doing this is by using a remove duplicate stage. The input to the remove duplicate stage should be sorted ba...
by hari4dsx
Mon Jun 07, 2010 3:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF stage:Issue of Junk values
Replies: 2
Views: 1773

CFF stage:Issue of Junk values

Hi All I am reading a Cobol file using a CFF stage.It is a fixed width binary file and the charadcter set is set as 'EBCIDIC'.There is an alphanumeric field in the source which "PIC(20).I am trying to read the particular field as "character" and have set the usage clause to "DISP...
by hari4dsx
Mon Jan 25, 2010 10:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query on Hash Partitioning
Replies: 4
Views: 4724

Thanks for replying Hamzaq.

What will happen if the input key column values contain nulls.Will hash partitioning ensure that all the nulls will go to the same partition.
by hari4dsx
Mon Jan 25, 2010 10:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query on Hash Partitioning
Replies: 4
Views: 4724

Query on Hash Partitioning

Hi All, I want to understand Hash Partitioning in Datastage. I understand that if we define Hash Partitioning in a stage then the records having the same value for the mentioned Key Column will go to the same node. However what will happen if the key column is nullable and some of the records contai...
by hari4dsx
Sat Aug 15, 2009 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to retain preceeding zeros in a decimal field?
Replies: 10
Views: 5624

How to retain preceeding zeros in a decimal field?

Input field is a decimal (eg. 00012.)..
This is to be converted into integer, with the preceeding zeroes retained.

Does anyone have any solution for this...?


Thanks in advance.
by hari4dsx
Mon Mar 09, 2009 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with date and timestamp
Replies: 2
Views: 1643

Issue with date and timestamp

Hi, We are using the following function to populate date with corresponding timestamp in one of the fields "Oconv(Date(),"DYMD"):Oconv(@TIME,"MTS")" The function gives correct results but for a job whose execution started at 11:55 PM on 3rd March and ended at 12:05 AM 4...
by hari4dsx
Wed Feb 04, 2009 12:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What are RT_BP and RT_STATUS files?
Replies: 5
Views: 4515

What are RT_BP and RT_STATUS files?

Hi...
What are RT_BP and RT_STATUS files which are present in the project directory.
Can we delete these these files if we have to relese some space from the directory without affecting the jobs?

Thanks in advance.
by hari4dsx
Thu Jun 26, 2008 5:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Removing a record with null field using transformer
Replies: 1
Views: 1315

Removing a record with null field using transformer

Hi, My requirement is to check the value for a particular field.If the value is null then send the entire record to error table else pass it to output. I am using the following condition in the constraint field. IsNull(input column) the job executes well but the error table is not populated with the...
by hari4dsx
Wed Jun 18, 2008 6:18 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: how to fetch last row record
Replies: 3
Views: 3841

Re: how to fetch last row record

how to fetch the last row of a particular column? what should be used? transformer or aggregator??? Well.....One way can be to use a transformer stage and generate a new column which will be made to store numbers in increasing order.i.e the column values will act as a row number.Then we can use an ...
by hari4dsx
Thu Feb 28, 2008 1:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems while loading data into Oracle database using ODBC
Replies: 1
Views: 1296

Problems while loading data into Oracle database using ODBC

Hello, I am fetching my data from Oracle database,using ODBC connections.After processing ,I am trying to load it back again to the Oracle database using a different ODBC connection in a different table ,of the same user. While loading I get the following error: APT_CombinedOperatorController,0: [Or...
by hari4dsx
Thu Feb 28, 2008 1:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems while loading data into the Oracle database
Replies: 1
Views: 1217

Problems while loading data into the Oracle database

Hello, I am fetching my data from Oracle database,using ODBC connections.After processing ,I am trying to load it back again to the Oracle database using a different ODBC connection in a different table ,of the same user. While loading I get the following error: APT_CombinedOperatorController,0: [Or...
by hari4dsx
Fri Feb 15, 2008 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with sequential file.
Replies: 3
Views: 2829

Issue with sequential file.

Hello, I am doing a job,involving data to be loaded from a sequential file. Although the job is running I am getting the following warning from the sequential file stage: 1.Sequential_File_39,0: Import consumed only 37bytes of the record's 38 bytes (no further warnings will be generated from this pa...
by hari4dsx
Thu Feb 14, 2008 10:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issues with Date formats
Replies: 2
Views: 1633

Thanks a lot Mr. Wurlod.
Placing a copy stage in between the modify stage solves the problem.

Regards
by hari4dsx
Thu Feb 14, 2008 5:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issues with Date formats
Replies: 2
Views: 1633

Issues with Date formats

Hello, I have been trying to convert a date present in a flat file in yyyy-mm-dd format to mm-dd-yyyy format and store it in a database. I have used a modify stage to convert the given date to string in mm-dd-yyyy format using String_Date_Function. Now, before loading it into database as the string ...