Search found 153 matches

by soumya5891
Fri Dec 05, 2014 10:55 am
Forum: General
Topic: Routine to connect SQL server
Replies: 2
Views: 1867

Thanks a ton Ray for your hel and support. After understanding the BCI function I have created a server routine and it's connecting and executing query in SQL server absolutely fine. I'm making it as resolved. Again thanks a lot.
by soumya5891
Tue Dec 02, 2014 12:20 pm
Forum: General
Topic: Routine to connect SQL server
Replies: 2
Views: 1867

Routine to connect SQL server

My datastage is installed in AIX server. I can connect SQL server databse using ODBC driver in parallel DS job. Now can I connect that particular SQL Server database using server routine?
by soumya5891
Mon May 26, 2014 1:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with XML input stage
Replies: 7
Views: 4113

Is the datastage running on MPP configuration?
by soumya5891
Tue May 06, 2014 1:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit issue in Oracle Connector
Replies: 1
Views: 1084

Commit issue in Oracle Connector

I have a simple job where loading to a oracle table using oracle connector table. I have set the value of APT_ORAUPSERT_COMMIT_ROW_INTERVAL to 0. So all the rows will be committed at a time. Now purposefully I'm aborting the job by creating some unique violation in the target table and observed the ...
by soumya5891
Tue May 06, 2014 12:22 pm
Forum: General
Topic: How to find Last compilation of the datastage job?
Replies: 8
Views: 9956

Re: How to find Last compilation of the datastage job?

This can be done in the following ways.

1. Perform a advance search with that job name in designer
2. From director select that particular job and clear the state file
by soumya5891
Sat Apr 19, 2014 12:49 pm
Forum: General
Topic: Oracle command in Datastage Sequence
Replies: 8
Views: 7466

Can you please use the below format when you are setting up connection with oracle and executing the query. sqlplus -s User_Id/Password@DB_Name<<! SET HEADING OFF SET NEWPAGE 0 SET SPACE 0 SET LINESIZE 80 SET PAGESIZE 0 SET ECHO OFF SET FEEDBACK OFF SET VERIFY OFF SET HEADING OFF SET MARKUP HTML OFF...
by soumya5891
Mon Apr 14, 2014 2:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looking for effective solution for sum
Replies: 6
Views: 4068

Also you can achieve by using transformer looping and saveInputRecords() and getSavedInputRecords() function.
by soumya5891
Mon Apr 14, 2014 10:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looking for effective solution for sum
Replies: 6
Views: 4068

What is the version you are using?
If it is 8.5 and above then best option is to use transformer loop with cache memory.
by soumya5891
Fri Apr 11, 2014 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get max performance using upsert mode?
Replies: 4
Views: 2402

Re: how to get max performance using upsert mode?

Guessing that your data volume is high. Separate out the insert and update job. In the update job push down the update totally in the DB server in the following way. create a temp table and then load it in bulk load mode with the updated records. In the after sql write a query to update the target t...
by soumya5891
Wed Apr 02, 2014 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join error - invalid record count
Replies: 2
Views: 1316

Re: joiner error

Are you using join after aggregator? If so and using sort method in the aggregate then sort the input on the basis of aggregation key.

For larger no of distinct key combination use sort method otherwise hash method in aggregator stage
by soumya5891
Sat Mar 08, 2014 12:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage job aborts with unusual error message
Replies: 2
Views: 3097

Thanks a lot for your response. I deleted the transformer and again build from transformer to DB2 connector. Then the job ran fine. From my understandings this basically happens when we are trying to run DB2 connector on DB node and we don't have distribution key of that particular table is not pres...
by soumya5891
Thu Mar 06, 2014 1:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage job aborts with unusual error message
Replies: 2
Views: 3097

Datastage job aborts with unusual error message

I have a simple job where performing SCD(using SCD stage) and followed by a transformer and lastly a DB2 connector which is running in upsert mode. The job is throwing some unusual error message in one of the environment but in other environment it works fine.Below is the error message. APT_Combined...
by soumya5891
Sat Feb 08, 2014 1:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameterized values getting hard coded
Replies: 10
Views: 6947

I have faced the problem sometimes. All the parameter including connection parameters and parameters used in the sql statement have been hard coded with the values which was used to view data in the DB2 connector stage in 8.5 version.
by soumya5891
Mon Jan 20, 2014 1:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Scenario?
Replies: 5
Views: 2645

What is the DS version you are using?
by soumya5891
Mon Jan 13, 2014 11:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file at the output of xml stage
Replies: 6
Views: 4425

I got the clarification. Did one basic mistake. One of the field value was becoming null after xml parsing that's why that records are getting dropped in the sequential file.

Thanks a lot Ernie for your help and support.I'm marking it as resolved.