Search found 51 matches

by nikhil_bhasin
Mon May 30, 2016 12:08 am
Forum: General
Topic: Designer: Could not connect to server after rehost
Replies: 4
Views: 4904

I am also facing same issue. I am trying to import the jobs from one server to another in DS 9.1. But while importing I get this error. Has anyone found a resolution for this?
by nikhil_bhasin
Wed May 25, 2016 3:49 am
Forum: General
Topic: Problems with the import of a DSX File
Replies: 5
Views: 5073

Hi,

We are also facing the same issue. I have exported the dsx without executables and tried the proxy heap size change also. Still same issue persists. Did anyone was able to find any solution for this?

Thanks
by nikhil_bhasin
Wed May 11, 2016 4:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: shared container output link problem
Replies: 5
Views: 4801

Check whether column FACULTY_OWN has no spelling mistake, if you have put in manually anywhere before and after shared container. Remaining errors might have been caused due to this warning.
by nikhil_bhasin
Wed May 11, 2016 4:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Metadata Driven ETL
Replies: 7
Views: 7477

You can utilize some of the existing information if not all. For e.g. create a shell script to query the database table and pass parmeters like Source table/Tgt table, source query, insert/update query to datastage job.
by nikhil_bhasin
Wed May 21, 2014 4:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Director log not showing correct number of records inserted
Replies: 3
Views: 2583

My job design is as follows:- rowgen -> teradata api stage Here rowgen stage is acting as a dummy stage which sends just 1 record which is not used anywhere. All the data processing takes place via a SQL which is written in API stage. Something like Insert Into tab1 (col1,col2,col3....) Select col1,...
by nikhil_bhasin
Tue May 20, 2014 10:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Director log not showing correct number of records inserted
Replies: 3
Views: 2583

Director log not showing correct number of records inserted

Hi, I have few jobs which use Teradata API stage with User Defined SQL method in Insert write mode. I am loading my target table by selecting records from source table and applying few joins/formatting. My job gets completed successfully but in Director log, the number of records inserted/updated/de...
by nikhil_bhasin
Wed Dec 18, 2013 8:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implementing Transpose functionality in Datastage 8.5
Replies: 2
Views: 2345

Try Pivot stage. You need to add 1 column with a constant value and then use pivot enterprise stage. This would not get you the column names though.
by nikhil_bhasin
Wed Dec 18, 2013 7:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change data capture-comparison of 2 records in after dataset
Replies: 3
Views: 2724

I guess, for Change capture stage, there should be unique keys in both before and after data. In my opinion DS won't do a row position by position comparison.
by nikhil_bhasin
Wed Dec 18, 2013 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Different results in 8.7 job than 8.1 version job
Replies: 9
Views: 6436

@ArndW
I am using sort option in the partitioning tab of Remove Duplicate stage itself. I am not much clear about the pros and cons of using stable sort, but will try and post back results
by nikhil_bhasin
Sun Dec 15, 2013 10:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Different results in 8.7 job than 8.1 version job
Replies: 9
Views: 6436

If you meant the datatypes of key columns then it is integer and date.
by nikhil_bhasin
Thu Dec 12, 2013 11:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Different results in 8.7 job than 8.1 version job
Replies: 9
Views: 6436

The NLS settings are same for both ASCII_ASCL. And the selection of records to retain keeps on changing every time I run the jobs with same source data. Is there any change in the hash algorithm between the 2 versions.
by nikhil_bhasin
Thu Dec 12, 2013 1:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Different results in 8.7 job than 8.1 version job
Replies: 9
Views: 6436

Different results in 8.7 job than 8.1 version job

Hi All, I am facing a unique issue while migrating 8.1 version jobs to 8.7 version. Couple of jobs that have remove duplicate stage with hash partition are displaying difference in results when i compare 8.1 output with 8.7 Scenario is like this:- i/p colA,colB,colC,colD A,B,C,1 A,B,D,2 B,C,D,1 keys...
by nikhil_bhasin
Tue Aug 27, 2013 8:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: terdata connector statement error
Replies: 3
Views: 2539

Thanks chulett. I will try setting this variable and let you know the results.
by nikhil_bhasin
Tue Aug 27, 2013 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: terdata connector statement error
Replies: 3
Views: 2539

Hi, found the solution, we need to pass escape charcters also as part of the parameter value so

#WHERE_CLS#=where (cast(dt_yr as date FORMAT \'yyyy\') < 12)


so that single qoutes are treated as a character while execution
by nikhil_bhasin
Tue Aug 27, 2013 12:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: terdata connector statement error
Replies: 3
Views: 2539

terdata connector statement error

Hi, I have a datastage job which has a teradata connector stage as target that issues a delete statement to purge the data from the tables. Table name and where clause is parameterized so that the same job can be utilized for multiple purges. The issue that I am facing is when I have single quotes i...