Search found 39 matches

by vasa_dxx
Mon Dec 29, 2008 7:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best way to convert to jobs
Replies: 3
Views: 1016

We also had the similar scenario in our project. We observed that using user defined SQL is efficient instead of using multiple stages in a job. we had a SQL having 17 joins & all joins were used in a single OE Stage. it works. But if you need to apply some logic after the data sourcing/Joining,...
by vasa_dxx
Wed Dec 24, 2008 6:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: An additional space is prefixed for the decimal fields
Replies: 3
Views: 2244

Please post the Job design. So that one can find the options in the stages used in job or can suggest a new o be included.
You can rectify it by using trimB() to trim spaces in transformer.
by vasa_dxx
Wed Dec 24, 2008 5:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC connectivity to datastage server
Replies: 6
Views: 3108

check in ODBC admin for available ODBC drivers installed
by vasa_dxx
Wed Dec 24, 2008 4:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC connectivity to datastage server
Replies: 6
Views: 3108

You need to explicitly Install ODBC pack for different DBs. For Eg: MS Excel, Oracle, Teradata etc.
by vasa_dxx
Mon Dec 22, 2008 12:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using trim
Replies: 7
Views: 3281

If you want to Extract n char from a string, go for Left or Right Functions.
Left(string,Number).
by vasa_dxx
Mon Dec 22, 2008 12:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: to filer out data based on particular value
Replies: 5
Views: 2101

I don't think its quite possible through Filter Stage. Becuase, In Where parameter, You need to specify operators =, like, between. So use a transformer. Use the derivation to filter after converting the I/p column to Lower or Upper Case. output_link.col_b --->> lower(input_link.col_b)='pink' This a...
by vasa_dxx
Sat Dec 20, 2008 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job aborting without errors
Replies: 3
Views: 2765

Please mark the Post as resolved
by vasa_dxx
Wed Dec 17, 2008 1:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job aborting without errors
Replies: 3
Views: 2765

There can be n number of issues. The presumed one may be not the actula. Hence,could u please post the OSH code generated. It gives more clear picture of the operations that intend tio be performed by the job.
by vasa_dxx
Tue Dec 16, 2008 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove Duplicates from source File
Replies: 2
Views: 1241

Please be clear with the requirements. Whether the the job should write whether only duplicates or all records if encountered with duplicates. In PX , the Job can be designed like, the one below, 1.if you want to filter out only duplicate records. seq_file_stage ---->>agg(no. of rec with a key)---->...
by vasa_dxx
Wed Oct 15, 2008 6:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle write hangs infinitely
Replies: 20
Views: 9543

Thanks everybody for the Technical guidance.
The issue isn't resolved yet, but hope it soon due to diligence efforts by the members of this forum.

Although not complete resolution, but narrowing down the possibilty of cause gave me a good knowledge of the basics required.

Thanks Folks,
by vasa_dxx
Mon Oct 13, 2008 2:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle write hangs infinitely
Replies: 20
Views: 9543

Thanks ArndW. I can't see your suggestions after third line. I set APT_ORA_WRITE_FILES =' (DIRECT=TRUE, PARALLEL=FALSE) ' Inspired by the success of Oraupsert , I tried Upsert on a table using a sort Stage whose Output is 918553 records. Now the same Porblem of hang is reproduced. Does DS use sqlllo...
by vasa_dxx
Fri Oct 10, 2008 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle write hangs infinitely
Replies: 20
Views: 9543

The job hangs only when I try to Load Oracle.
But i succeeds when i do an Upsert/insert.

I need to configure sqlloader????
by vasa_dxx
Wed Oct 08, 2008 11:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle write hangs infinitely
Replies: 20
Views: 9543

lstsaur wrote:Did you mean you were able to insert or update table using SQL*Plus?
Yep. I did i.
by vasa_dxx
Wed Oct 08, 2008 10:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle write hangs infinitely
Replies: 20
Views: 9543

ArndW wrote:the full outout above is too much for me. Are you doing a load or normal table writes? Can you actually do an insert or update manually to this table? ...
Yep. I did it successfully.