Search found 145 matches

by Raghavendra
Wed May 25, 2011 12:25 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Web Service Invocation from SOAPUI
Replies: 4
Views: 6590

eostic,

Than you for your inputs. My userid got locked so couldn't reply to your message. I created a new userid for premium membership.

We have asked the consumers to flatten the xml structure and gave the same WSDL and it is working fine.

Thanks
Raghavendra
by Raghavendra
Thu Apr 28, 2011 8:41 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Web Service Invocation from SOAPUI
Replies: 4
Views: 6590

Web Service Invocation from SOAPUI

We have a created a Name Search Job in QualityStage and exposed it as a web service. Our idea here is that this should be consumed by multiple applications. We have defined a CMM standard xml response and request for this web service. We have imported these xmls and created the Job. The Job is worki...
by Raghavendra
Wed Mar 23, 2011 4:00 am
Forum: IBM QualityStage
Topic: Customer Name Matching
Replies: 0
Views: 2007

Customer Name Matching

We have a requirement to search a database for a customer based on Name and Address fields. The search happens in real time from a web service. We have customer database with 10 million rows (Name and Address are not standardized) and it can be updated in real time with new customers. When we invoke...
by Raghavendra
Tue Dec 30, 2008 1:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use dsexport.exe in batch without export status box?
Replies: 4
Views: 7878

You can export the whole project as a single dsx file and then run some scripts to parse the file and create one dsx file per job.

For more information refer the following link

viewtopic.php?t=113429
by Raghavendra
Tue Dec 30, 2008 1:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage job compilation
Replies: 7
Views: 6826

I believe we cannot compile a job in through the command prompt.
by Raghavendra
Tue Dec 30, 2008 1:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to assign next value to the current record
Replies: 2
Views: 1592

First sort the data then using a copystage send the rows to two links. On the first link add a new column (KEY) with generated numbers from 1. On the second link add another column(KEY) with generated numbers from 0. Join both the links using generated column (KEY) as a key column. The First Link wi...
by Raghavendra
Fri Dec 12, 2008 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Combine multiple rows into one row (Vertical Pivoting)
Replies: 10
Views: 14769

In this example I see you have a set of 5 records. In your data, is this set of records fixed.
by Raghavendra
Fri May 02, 2008 12:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write 0 to sequential file when source DB return 0 records
Replies: 4
Views: 2478

I have implemented the same kind of logic in server using db2.

I have fired a query using Count(Primary key) first and checked if it is 0 or more. If it is 0, write 0 in the sequential file directly else do the other processing as required.
by Raghavendra
Thu Mar 27, 2008 12:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Target file in different location when there is a reject.
Replies: 1
Views: 1560

In After Job sub-routine write a script to check if there is a reject record.If you find reject record then move the file to the required location.
by Raghavendra
Thu Mar 27, 2008 12:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance issue
Replies: 4
Views: 2539

I belive in latest versions (7.5V onwards) transformer is not a performance overhead.
by Raghavendra
Wed Mar 26, 2008 3:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare the number of records
Replies: 5
Views: 2608

Can you please let me know what is CART input file & Control file?
Is CART some different file type?
by Raghavendra
Wed Mar 12, 2008 12:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting, Partitoning
Replies: 3
Views: 1876

I will prefer to set the partition to same in the sort stage for this scenario.
by Raghavendra
Wed Mar 12, 2008 12:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivoting
Replies: 2
Views: 1771

Do you what is the maximum number of rows that has to be converted into columns?
by Raghavendra
Tue Mar 04, 2008 11:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding surrogate key
Replies: 6
Views: 3220

How are you going to maintain the history in the database? Which type of SCD you are using? IS it type 1 or 2 or 3. If you want to generate the surrogate key how would you like to generate. Do you want to generate it within the DataStage or do you want to generate it using a sequence in database? Pl...