Search found 229 matches

by pnchowdary
Fri Sep 30, 2005 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DATASTAGE PX and SAP R/3
Replies: 2
Views: 2747

Hi Reddy, I dont know much about the chemistry between SAP R/3 Pack and DataStage 7.5 Px, as I am a software engineer :wink: . In the SAP R/3 Pack, there is a stage called ABAP Extract Pack 1) This has a SQL builder, which will help you build the SQL query to extract from the various SAP Tables. 2) ...
by pnchowdary
Tue Sep 27, 2005 12:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IDOC stage keep running(stuck)
Replies: 7
Views: 4529

Hi Ketfos, Here is some Info regarding an IDOC An IDoc (intermediate document) is a report, that is, a hierarchal package of related records, generated by SAP R/3 in an SAP proprietary format. An IDoc, whose transmission is initiated by the source database, exchanges data between applications. It pr...
by pnchowdary
Mon Sep 26, 2005 1:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extracting first occurance of number from String
Replies: 14
Views: 7973

Hi dhiren, Your requirement needs to be more specific, for us to be able to help you more. Can we assume that the number you want to extract is always at the end of the string? Now if i make the Code to answer most likeliest of possibilities, then the numeric string will be last one or two character...
by pnchowdary
Mon Sep 26, 2005 9:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extracting first occurance of number from String
Replies: 14
Views: 7973

Hi dhiren, Do you know the maximum size of the numeric value that is embedded in the string?. Can two numbers occur next to each other? If you dont know how big the number can be, it is not possible to extract it. For Example COROMN13198POIUT1234 If you dont know the size, what would you expect to b...
by pnchowdary
Mon Sep 26, 2005 9:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: about GCI error info
Replies: 5
Views: 3383

Hi Joshen, Are you using the ABAP Extract Pack to extract data from SAP tables?. If so, check whether the ID that you are using has authorization to do a select on that particular table. In which stage exactly are you getting this error?. If you tell us your job flow, it would be easier to troublesh...
by pnchowdary
Fri Sep 23, 2005 12:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: collecting top 200 upc
Replies: 4
Views: 2808

Hi Pavan,

In that case, you can still use Craig's solution, but instead of just sorting on UPC alone, you need to sort on both venue column and then the UPC column.
by pnchowdary
Fri Sep 23, 2005 10:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between DS Transform, DS Routine, Function
Replies: 4
Views: 3980

Thanks a lot Ken. :D
by pnchowdary
Fri Sep 23, 2005 9:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between DS Transform, DS Routine, Function
Replies: 4
Views: 3980

Difference between DS Transform, DS Routine, Function

Hi Guys,

Could any of you please enlighten me on the various differences between DS Tranforms, DS Routines and Functions in Datastage?.
by pnchowdary
Fri Sep 23, 2005 8:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source records equal to trailer records
Replies: 10
Views: 5572

Hi dslearner,

Its always a good practice not to abort a job. Instead you can use two jobs, first job to check your condition and second job to actually process the data. In a job sequence, you can run the first job and depending upon the result, either run the second job or not.
by pnchowdary
Thu Sep 22, 2005 12:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicates/Sorting question
Replies: 17
Views: 8520

Hi Emilio, If you want to remove duplicates in each column, then you need to make all of them as key columns, before you write them to a hash file. But, you need to keep in mind, that in this method follows destructive write and only the last one wins. After you get all the unique keys into a hash f...
by pnchowdary
Thu Sep 22, 2005 10:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicates/Sorting question
Replies: 17
Views: 8520

Hi Emilio, In the aggreagtor what I meant by this "You can use the aggregator and the count > 1" was the below For each key column you need to define a dummy column and group on the key column and use the count aggregate function to populate the dummy column. After you do that, you need to...
by pnchowdary
Thu Sep 22, 2005 10:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read from a DB@
Replies: 4
Views: 3133

You can also use some sort of sleep statement to delay the execution of that particular stage.
by pnchowdary
Thu Sep 22, 2005 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicates/Sorting question
Replies: 17
Views: 8520

Hi Emilio, There are several methods to remove the duplicates. Below are some sample approaches 1) You can define all the columns that you want to remove duplicates from as key columns and write them into a hash file. 2) You can use the aggregator and the count > 1 to filter duplicates 3) You can al...
by pnchowdary
Wed Sep 21, 2005 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Suppression Of left zeroes
Replies: 10
Views: 6838

Hi,

You can use the below transformation.

Code: Select all

FMT(InLink.InCol,"16LZ")
Where 16 is the total size of the column
by pnchowdary
Wed Sep 21, 2005 10:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read from a DB@
Replies: 4
Views: 3133

Hi,

After you insert some rows into a DB2 table and commit the changes. You should not have any problem reading the commited changes in further stages. Whether you are doing this inside a shared container or not, will not make any difference in the above behavior.