Search found 27 matches

by ArjunK
Mon Jun 07, 2010 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading XMLs into Db2 UDB -
Replies: 3
Views: 1754

Loading XMLs into Db2 UDB -

Hi , We have requirements around loading data (coming in XML format) into a Db2 UDB data warehouse. In the past we have done it using Datastage ( XML PlugIn Stages) but we are dabbling with using pureXML instead of DataStage . I have read a couple of articles on it but wanted to see if anyone has ha...
by ArjunK
Mon May 10, 2010 3:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need help for join stage
Replies: 2
Views: 1984

Full Outer join and a transformer should do it.
by ArjunK
Wed Apr 21, 2010 8:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ Messsages breaks up
Replies: 3
Views: 2101

Could it be because of MQ message segmentation for handling large message sizes?
by ArjunK
Tue Apr 20, 2010 12:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert, delete and update
Replies: 6
Views: 4071

Re: insert, delete and update

The Change capture done in the upstream should ensure that the same tuple is not being propagated on all three links. A long as lock escalations don't happen from Row to Page to Table , deadlocks shouldn't happen. The commit frequency might also play a factor in your job set up.
by ArjunK
Fri Apr 16, 2010 10:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange Issue - Datastage Going down
Replies: 14
Views: 8140

Few years back I had seen a similar thing happen in one of the projects. On investigating the issue it was found that in the DataStage flow a Unix delete command was being fired rm * and it was deleting some internal set up files as it did not have the right path specified. ..Good Stuff .. :D ..i ho...
by ArjunK
Thu Apr 15, 2010 12:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sending files to MQ
Replies: 6
Views: 3621

You can try using the server folder stage with MQ. I have done that with text files and know that it works. Have never done zip files though!
by ArjunK
Thu Apr 15, 2010 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Computation
Replies: 3
Views: 1926

You can remove dups on all four keys and then just aggregate on all four. Where ever the count is greater than 1 set record as 'MULTIPLE'. If you remove duplicates, you cannot have multiple. So the count will not be more than 1. My bad. Remove duplicates of four and then aggregeate on the first thr...
by ArjunK
Thu Apr 15, 2010 8:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Computation
Replies: 3
Views: 1926

You can remove dups on all four keys and then just aggregate on all four. Where ever the count is greater than 1 set record as 'MULTIPLE'.
by ArjunK
Thu Mar 11, 2010 1:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling XML special characters
Replies: 4
Views: 2511

As chulett mentioned you don't have to do anything. The XML Output stage will automatically convert the XML reserved characters.
by ArjunK
Thu Mar 11, 2010 1:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing <?xml version = "1.0" encoding = "
Replies: 4
Views: 6149

In the XML Output Stage --> Output Tab --> Document Settings --> Check the property "Generate XML Chunk"

This will prevent the "<?xml version = "1.0" encoding = "UTF-8"?>" tag from getting generate for each output xml.
by ArjunK
Wed Mar 10, 2010 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement this logic DS PX
Replies: 5
Views: 2478

Try the following: If the number of output date columns is fixed then you could have that many output links from a transformer stage and extract and pass the date values into the output. So , if you have 10 output date field in the Table, create 10 output links from a transformer and pass one date f...
by ArjunK
Fri Mar 05, 2010 10:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Avoid Dupicates in Transformer stage
Replies: 5
Views: 2865

What other way did you have in mind? You can do it either using the stage Or directly on the link.
by ArjunK
Fri Mar 05, 2010 10:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Output- Aborting because of large number of records
Replies: 6
Views: 2790

Try setting up a counter within the Transformer stage which changes its value i.e it gets incremented when the "Threshold" is reached. This Threshold can be set as a parameter that can be changed on need basis. Then use the Counter as the Trigger Column in the XML Output stage.
by ArjunK
Thu Feb 25, 2010 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join stage
Replies: 4
Views: 2902

By duplicate column in join , you mean the same column name on the inputs to the join stage. Well..you can do it by renaming one of them :roll:
by ArjunK
Fri Jan 29, 2010 3:23 pm
Forum: General
Topic: Job dependancy between different DS projects
Replies: 10
Views: 4870

My 2 cents..Ideally you would want to have an external scheduling tool handle cross project/application scheduling and dependencies