Search found 376 matches

by jerome_rajan
Tue Dec 18, 2012 2:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connector giving error
Replies: 4
Views: 2606

Could THIS be your solution?
by jerome_rajan
Tue Dec 18, 2012 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning on Datastage parallel job on duplicate entry
Replies: 9
Views: 6103

On what basis did you check if there are duplicates? Is it not possible that there are multiple records for the same value of your lookup keys?
by jerome_rajan
Mon Dec 17, 2012 2:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deriving Mappings From DataStage Jobs
Replies: 1
Views: 945

Never mind. I got the answer here. FastTrack is the way to go! :)
by jerome_rajan
Mon Dec 17, 2012 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deriving Mappings From DataStage Jobs
Replies: 1
Views: 945

Deriving Mappings From DataStage Jobs

Hi,

I know that FastTrack can create DataStage jobs from mapping specifications. I was wondering if there is a way to generate mapping specification from DataStage jobs. I cannot see any direct solution in FastTrack but please let me know if there is some work-around to achieve this. Thanks
by jerome_rajan
Fri Dec 07, 2012 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error writing reject file - after Oracle insert error
Replies: 3
Views: 6685

I think the job is functioning as expected. The sequential file did not get created because you flagged the job to abort after 5 db rejects. If there were less than 5 rejects(in which case the job wouldn't abort), the file would get created. You may want to set the abort after rows property to 0 to ...
by jerome_rajan
Fri Dec 07, 2012 4:46 am
Forum:
Topic: Lineage with RCP job in Workbench
Replies: 2
Views: 2524

Thanks Ernie. That explanation was way better than all the documentation I went through. Will try my hand at it and get back. :)
by jerome_rajan
Thu Dec 06, 2012 4:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ** Dataset display after SORTING ** V8.7
Replies: 3
Views: 1676

The sorting is not meant for you to view everything in sorted order. It's meant for certain functionalities to execute correctly in an efficient way (e.g. Aggregations, Joins, etc)
If you want to view sorted data, you should consider collecting data from all the partitions and sorting it sequentially.
by jerome_rajan
Thu Dec 06, 2012 4:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TWO DIFFERENT DATA FLOWS IN A SINGLE JOB
Replies: 13
Views: 4910

If you're using the 4 node config file for the job, both flows will run on all 4 nodes unless of course you are applying node pool constraints.
Just think of 2 different jobs with the same configuration running at the same time!
by jerome_rajan
Wed Dec 05, 2012 4:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to do the bulk loading in Dataset in datastage
Replies: 2
Views: 1421

Bulk loading is a database specific concept. Datasets reside on the same server as Infosphere. Whatever data is available is written to the dataset's data files.
by jerome_rajan
Wed Dec 05, 2012 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Special Character Removal
Replies: 3
Views: 2531

Wouldn't the convert function solve your problem?

Code: Select all

convert(colname,""'_'& #","")
by jerome_rajan
Wed Dec 05, 2012 12:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter in WHERE clause
Replies: 23
Views: 9405

Yes Ray. It's just that the solution proposed earlier stated the need to generate a new column in the modify stage (TempKeycol) which did not work. When however we used the same name via a parameter (as you can see above), the solution worked. We played around with what you had earlier stated. So th...
by jerome_rajan
Wed Dec 05, 2012 12:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Px Job Link naming issue
Replies: 3
Views: 1268

Is it possible that there are conditions mentioned in the constraints section of the transformer?
by jerome_rajan
Tue Dec 04, 2012 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP In remove duplicates and to pass the keys as param
Replies: 3
Views: 5088

Faced a somewhat similar quandary while trying to get a key to perform a generic delete. Reading through this might help. In the end, the solution to my problem was rather simple.
by jerome_rajan
Tue Dec 04, 2012 4:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter in WHERE clause
Replies: 23
Views: 9405

DELETE FROM #SCHEMA_NAME#.#TABLE_NAME# WHERE #KEY_COLUMN#= ORCHESTRATE.TempKeyCol My colleague came up with a rather simple solution just slightly tweaking the solution involving the modify stage. Instead of generating a new TempKeycol, this is what he did in the modify stage Specification=#KEY_COL...
by jerome_rajan
Fri Nov 30, 2012 10:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job runs for a long time and does not complete
Replies: 11
Views: 5795

I am also inclined towards a possible deadlock at the database (assuming of course that she's extracting/loading relational tables) due to open/abandoned connections. But unless she gives more data, it would be hard to put a finger on any solution.