Search found 26 matches

by abhinavagarwal
Fri Sep 18, 2015 11:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help in DataStage's XML and MQSeries capabilities
Replies: 8
Views: 5295

Re: Help in DataStage's XML and MQSeries capabilities

Hi Mohsin for MQ, you may want to read from documentation of MQ itself that should give you a fair idea on how-to, what-to etc... while for XML you can read on these, just to avoid re-writing everything here, giving you pointers, use following links - http://pr3systems.com/blog/information-managemen...
by abhinavagarwal
Fri Sep 18, 2015 11:36 am
Forum: General
Topic: Unable to login into ds designer client
Replies: 3
Views: 2347

Re: Unable to login into ds designer client

As per error message it is all about "role setting" for the user(kirands99) which you are using.

It can be done DS Administrator, ask your admin to assgin you to developer user group.

It should resolve your problem.


Best regards
by abhinavagarwal
Fri Sep 18, 2015 11:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading .xml file In DataStage
Replies: 4
Views: 5560

Re: Reading .xml file In DataStage

very simple one - Just to avoid re-writing everything here, giving you pointers, use following links - http://pr3systems.com/blog/information-management/datastage-xml-pack/ http://etlimpact.blogspot.com/2012/08/read-xml-file-in-datastage-using.html http://it.toolbox.com/wiki/index.php/Load_XML_files...
by abhinavagarwal
Tue Sep 15, 2015 12:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Web Service Client Stage issue
Replies: 2
Views: 3053

Re: Web Service Client Stage issue

This error message looks like only with connection, where user is being kicked out and tries to recover automatically, this can be due to either timed-out issue (like 300 seconds) or it can be anything with the network settings for the DS engine box. you may want to try to handle this "reset of...
by abhinavagarwal
Tue Sep 15, 2015 11:48 am
Forum: General
Topic: Need to Automate the creation of DSX's for DS jobs
Replies: 18
Views: 7998

Re: Need to Automate the creation of DSX's for DS jobs

You can use following link for your export / import part and put it in a sh script and remember to invoke dsenv before executing command in script. To export - http://www-01.ibm.com/support/knowledgecenter/SSPT3X_2.1.2/com.ibm.swg.im.iis.ds.design.doc/topics/dsexportcommand.html To import - http://w...
by abhinavagarwal
Mon Sep 14, 2015 7:57 am
Forum: General
Topic: Message in operation console
Replies: 5
Views: 3326

Hurrey ... nice to hear.
by abhinavagarwal
Mon Sep 14, 2015 7:39 am
Forum: General
Topic: Adding new empty parameter to a heavy-used sequence
Replies: 3
Views: 3553

Re: Adding new empty parameter to a heavy-used sequence

Define a parameter at project level with blank value and use that in your sequence so that other sequence would not complain to define that explicitly... I think this should resolves your issue.
If not than please let me know for my learning :)
by abhinavagarwal
Mon Sep 14, 2015 7:21 am
Forum: General
Topic: Message in operation console
Replies: 5
Views: 3326

Re: Message in operation console

You may want to try re-indexing your project.

let me know if this resolves your issue.

Best regards
by abhinavagarwal
Tue Oct 08, 2013 5:25 am
Forum: General
Topic: How to handle NULL values coming from DB side?
Replies: 5
Views: 2484

Hi above solution can be implemented but it depends what processing power you have with you and what data volume you have with you. Use option 1 , while you have less CPU cycle in datastage and good CPU cycles and less data volume. Use option 2 , while you have large data volume and moderate or good...
by abhinavagarwal
Mon Oct 07, 2013 10:02 pm
Forum: General
Topic: updating audit table
Replies: 6
Views: 2502

Hi In your audit tables you must have a static table where your all jobs/sequences must have an entry with a unique id. Use that id to pick up the row in the status table. If you are trying to have every run states then use date and status also in your where clauses in your update query. If you are ...
by abhinavagarwal
Mon Oct 07, 2013 9:54 pm
Forum: General
Topic: Commiting to SVN repository using subclipse
Replies: 2
Views: 2405

Re: Commiting to SVN repository using subclipse

Hi It is expected behavior, it must create the exact directory structure the way jobs are stored in the DS project. But if as you said it is using the host directory also, that should not happen. Probably you may try to tune some setting which will allow you to use a project specific location for ea...
by abhinavagarwal
Mon Oct 07, 2013 1:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: The open files limit is
Replies: 6
Views: 4311

hi Bob

Plz check -

user-id which has been used to create the node directories - this may be dsadmin id or root or any users on the box.

user-id which is used to make communication possible between the grid architecture - this may be root or may be dsadmin id.

Cheers.
by abhinavagarwal
Mon Oct 07, 2013 12:57 pm
Forum: General
Topic: updating audit table
Replies: 6
Views: 2502

Re: updating audit table

Hi

A column or flag or indicator which can find the the exact job-id, can be helpful.
Your audit job should be able to pick the job-id and then should be able to update the corresponding rows in the audit tables.

Cheers.
by abhinavagarwal
Mon Oct 07, 2013 8:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job taking more than 7 hours in production
Replies: 10
Views: 8187

Hi If sparse lookup is not needed to fulfill the functional requirements. Then break this job in two parts. First part should have all the pull from the oracle databases, source references all of them, as they will run on one node only, because we do not have partition tables here. Write the data in...
by abhinavagarwal
Mon Oct 07, 2013 8:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Instance Surrogate Key Generator
Replies: 5
Views: 3589

Re: Multiple Instance Surrogate Key Generator

Hi

Technically yes you can run multi instance job having surrogate key gen stage.

But functionally, if you want to use the same starting point for the key then okie, otherwise if you have to think for the logic which will be providing the correct start point for every instance.

Cheers.