Search found 75 matches

by babbu9
Sun Dec 14, 2014 1:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot configure Oracle wallet with ODBC
Replies: 5
Views: 5663

The problem is we already use odbc stage and we cannot change all of our code to use oracle stage now.

We have already upgraded the drivers and there seems to be no solution to the issue so far.
by babbu9
Thu Dec 11, 2014 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot configure Oracle wallet with ODBC
Replies: 5
Views: 5663

Cannot configure Oracle wallet with ODBC

Hi We are trying to configure SSL communications between datastage and oracle servers. The DBA has completed the server side changes and sent the certificates and TrustStore password to be used. I have tried many options but keep getting the same error everytime. TNSPING to the SID works. sqlplus co...
by babbu9
Wed Oct 31, 2012 1:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning 'delim=end' did not consume entire input
Replies: 5
Views: 26367

re

I just changed the final delimiter from "end" to "None" and it worked.
by babbu9
Wed Jun 27, 2012 7:19 pm
Forum: General
Topic: cannot open file ds_stagetypes error
Replies: 1
Views: 1890

cannot open file ds_stagetypes error

Hi We have recently installed(8.7) and migrated code from AIX to Linux server. I am running into a strange error "cannot open file ds_stagetypes" when I open the designer. This happens for all linux user ids including dsadm except the one that was used for installation and migration. Can y...
by babbu9
Thu Dec 15, 2011 11:35 am
Forum: General
Topic: Finding the last record in a transformer
Replies: 8
Views: 4934

use this, it worked for me

For flat files: First you need to know the rowcount for your file: In the job properties use before job subroutine command execsh and type "cat filename | wc -l > rowcount.txt" Have a lookup in your job that looksup the file rowcount.txt and gets the rownum value. Generate rownum using @IN...
by babbu9
Thu Aug 04, 2011 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load a table with foreign constraints
Replies: 1
Views: 1072

Load a table with foreign constraints

Hi I am working on loading an SQL SERVER table that has foreign key constraints on it. The job is failing because some of the data does not meet the constraints. How can we continue to load even if there a few failures during the load? I have not encountered any solution to this problem using datast...
by babbu9
Tue Mar 21, 2006 2:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delayed insert
Replies: 1
Views: 1053

delayed insert

Hi I have question regarding SCD2. There are couple of delta records coming in from CDC. I have to expire (user defined update on the rec_exp_date column) the corresponding records first and insert new records (user defined insert) . My current job design is like this. CDC--->Transformer------>Oracl...
by babbu9
Wed Mar 08, 2006 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing changed column
Replies: 2
Views: 1517

Capturing changed column

Hi I am working with the CDC stage. I would like to know if there is a way to know which particular column has actually changed between 2 incoming rows. If so how would we do it in a simple and easy way. I have been doing it with a decode statement in sql by joining the 2 rows. Please inform. Thanks...
by babbu9
Fri Mar 03, 2006 2:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unwanted data conversion
Replies: 1
Views: 1163

Unwanted data conversion

Hi I have a SQL server source with an NLS of SQL_LATIN1_GENERAL_CP1_CI_AS and an Oracle Target with NLS settingof AMERICAN. When I load data from source to target, some of the data is being changed Ex: ? changed to | Is this an NLS problem? What is the correct NLS setting that can be used in this ca...
by babbu9
Tue Feb 28, 2006 12:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: passing parameter to a select query
Replies: 4
Views: 1681

Can you be more specific. I have tried using loop concept in the sequences but the values used are only for determining the no of times a job runs rather than passing a distinct parameter value for each run.

Thanks
by babbu9
Tue Feb 28, 2006 8:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: passing parameter to a select query
Replies: 4
Views: 1681

passing parameter to a select query

Hi I have requirement to run a job 40 times with a parameter value sent to the source query of my job. The parameter is different for each run and should be generated anew for every run. Ex: Select empno from emp where deptno=#A# where A=1 for first run 2 for second and so on. The entire job must be...
by babbu9
Fri Feb 24, 2006 9:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Code Dictionary
Replies: 11
Views: 13971

Error Code Dictionary

Hi Everyonne
Is there a place where we have all the Error codes for datastage, their explanations and possible resolutions to those errors just like Oracle Ora-codes. I think this will greatly reduce the repetition of posts on the forum and direct users to the required site.

Thanks
Bob
by babbu9
Wed Feb 22, 2006 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL server connection problem
Replies: 5
Views: 2064

Thank you for the reply, My odbc.ini has entries for other databases but I have posted only the one for sql server. What are the steps to configure the connection?

Thanks
by babbu9
Wed Feb 22, 2006 12:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL server connection problem
Replies: 5
Views: 2064

SQL server connection problem

Hi We have a AIX box with datastage installed on it. We have sqlserver on a windows system and would like to connect to this database to get data. How will we define the odbc connection to get connected to sql server. What files need to be edited to get this effect. My .odbc.ini looks like this [SQL...
by babbu9
Wed Jan 25, 2006 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between a lookup and join
Replies: 2
Views: 1455

That was something I never knew.Thank you for the information.