Search found 72 matches

by prakashdasika
Sat Mar 14, 2015 8:21 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Webservices not processing higher volume after re-structure
Replies: 1
Views: 14665

Webservices not processing higher volume after re-structure

Hi, We had a service that was processing a request in 500 ms - 1 second. around 20,000 requests were processed in 1.5 hours. The service was calling a datastage job. Recently the job was split to two jobs. Two new services are created to call these new jobs. A wrapper job is created two call these t...
by prakashdasika
Tue Sep 17, 2013 6:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash Partition Query
Replies: 1
Views: 2448

It will not effect the performance of the DB stage but will effect the performance of job as the partitions are there on all 10 input links to the funnel.
by prakashdasika
Tue Apr 23, 2013 2:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add/pass project level parameter into Shared Containe
Replies: 2
Views: 2679

Please share how you resolved the problem.
by prakashdasika
Wed Oct 17, 2012 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output stage
Replies: 6
Views: 6594

This is because the two corrspondences are not getting sorted properly i.e. the first two records are sorted with the recipientBpId in the order of 1000000047 and 1000000045. The next two records belonging to other role are getting sorted in the order of 1000000045 and 1000000047. This i think is th...
by prakashdasika
Wed Oct 17, 2012 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output stage
Replies: 6
Views: 6594

Thanks ernie, i have created the first xml output stage with correspondence as repeating element, the second xml output stage with accountRoleToAccount as the repeating element. the issue is this after the correspondence xnm output stage it is creating 2 correspondence records , due to this: Peek_43...
by prakashdasika
Wed Oct 17, 2012 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output stage
Replies: 6
Views: 6594

As you can see a single XML is getting broken to two. The repeating eleamns are <accountRoleToAccount> and <correspondence>.The verison being used is 8.1. so i have to use multiple XML stagews to create the xml back from tabular data. The reason it is creating the output in the way it is , because t...
by prakashdasika
Wed Oct 17, 2012 12:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output stage
Replies: 6
Views: 6594

i have to read the data , change to tabular form and create the xml back: the xml out put lloks like this: sapAccount actionCode=" "> <accountRoleToAccount actionCode=" "> <role>ZPROP0</role> <validFromTo> <validFromDate>2011-03-30</validFromDate> <validToDate>9999-12-31</validTo...
by prakashdasika
Wed Oct 17, 2012 12:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output stage
Replies: 6
Views: 6594

XML output stage

Hi, I have an issue with an XML output creation: The input is like this: <sapAccount> - <accountRoleToAccount> <role>ZPROP0</role> - <validFromTo> <validFromDate>2011-03-30</validFromDate> <validToDate>9999-12-31</validToDate> </validFromTo> </accountRoleToAccount> - <accountRoleToAccount> <role>BCA...
by prakashdasika
Mon Jul 02, 2012 8:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File created in server, needs to be read in parallel job
Replies: 3
Views: 3509

Keep the delimiter to tab instead of comma and if the file is crated in UNIX, use unix new line format when reading the file. Similarly DOS format applies in windows environmnet
by prakashdasika
Mon Jul 02, 2012 7:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Input File for dataset not found
Replies: 6
Views: 4846

Can it be because of a different config file?
by prakashdasika
Mon Jul 02, 2012 7:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning
Replies: 6
Views: 7382

As mentioned by Craig and Ray, the best way is that check the metadata of seq file in the stage. Also add reject link to the stage to capture any unruly data. You can send the rejcts to the owners of file to correct it.
by prakashdasika
Mon Jul 02, 2012 7:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Format
Replies: 3
Views: 3455

Read the date field from source file as a varchar field. Use a stringtodate function in a transformer stage to change it to the required format before loading it to database.
by prakashdasika
Sun May 06, 2012 8:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server job exposed as web service failing with error
Replies: 1
Views: 2189

Server job exposed as web service failing with error

Server job exposed as web service failing with error: Link_Collector_13.InvalidXMLError: ds_ipcflush() - timeout waiting for mutex After further investigation i found that this error occured due to presence of stored procedure stage in the job. Since the job is exposed as always running i.e. minimum...
by prakashdasika
Mon Mar 05, 2012 9:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace . with -
Replies: 4
Views: 3084

Since the actual column in the sql table does not have a decimal, import the field as integer instead of decimal (which is the default for all numeric datatypes). No need to use covert function.