Search found 45 matches

by Sudhindra_ps
Fri Apr 25, 2008 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle commit interval
Replies: 11
Views: 7756

hi Dinthat,

Open up an cursor in your PL/SQL procedure to loop through each record and commit based on your insert / update DML statement execution status.

Thanks & regards
Sudhindra P S
by Sudhindra_ps
Fri Apr 25, 2008 4:10 pm
Forum: General
Topic: Wrapper jobs
Replies: 8
Views: 4292

hi, You could make use of External Source stage to invoke OS scripts which uses Datastage API to trigger an ETL job. Now you could use this external source stage in your parallel job canvas. This master job which invokes other Datastage jobs are called as Wrapper jobs. Thanks & regards Sudhindra...
by Sudhindra_ps
Fri Apr 25, 2008 4:08 pm
Forum: General
Topic: Wrapper jobs
Replies: 8
Views: 4292

hi, You could make use of External Source stage to invoke OS scripts which uses Datastage API to trigger an ETL job. Now you could use this external source stage in your parallel job canvas. This master job which invokes other Datastage jobs are called as Wrapper jobs. Thanks & regards Sudhindra...
by Sudhindra_ps
Wed Apr 09, 2008 1:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need logic for date transformation
Replies: 1
Views: 1595

hi,

If you are sure that input column is of "Timestamp" data type then you could make use of TimeStamp to string conversion function in Transformer stage or Modifier stage.
Ex: TimestampToString(InputColumn,"%yyyy%mm%dd")

Thanks & regards
Sudhindra P S
by Sudhindra_ps
Tue Apr 08, 2008 10:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: adding condition in Lookup Stage
Replies: 7
Views: 7598

hi divine, Design your ETL job in the following way. Source System --> Join Stage -->TransformerStage -->FilterStage -->Target System. (1) Perform "Innerjoin/LeftOuter Join(As per your need)" on "Source input stream" and "reference stream" using join stage based on your...
by Sudhindra_ps
Mon Apr 07, 2008 4:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle commit interval
Replies: 11
Views: 7756

hi dinthat, We had a similar issue a while ago. We raised an ecase with IBM but couldn't get proper solution from them in time. And moreover we didn't had enough time to wait for the solution from their end we just went with implementing PL/SQL SP to perform the task. The problem here is, Datastage ...
by Sudhindra_ps
Mon Apr 07, 2008 11:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: adding condition in Lookup Stage
Replies: 7
Views: 7598

hi, If you were using Datastage Ver8.0.1 then you could have made use of "Range Lookup" functionality. Otherwise, you need to do this conventional way. i.e. in the Transformer stage using stage variables you need to loop through and find whether "Reporting Date" falls between &qu...
by Sudhindra_ps
Thu Apr 03, 2008 7:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Discrepancy in the execution of the unix comnmand
Replies: 7
Views: 3118

hi, Just open up any of the job log you have run, from Datastage director. And see "Environmental Variable Settings" info, where you would see all environmental variables being exported to run your ETL job. In that list try to find these two variable values "LOGIN" and "LOGN...
by Sudhindra_ps
Mon Mar 24, 2008 5:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert Cyrillic data
Replies: 10
Views: 5113

hi Ray,

iconv command comes with UNIX. Please see documentation for the same in the below mentioned link.
http://www.gnu.org/software/libiconv/do ... onv.1.html

Thanks & regards
Sudhindra P S
by Sudhindra_ps
Mon Mar 24, 2008 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert Cyrillic data
Replies: 10
Views: 5113

hi,

You could do this in Unix by using iconv function. The syntax for which is as below.
iconv -f <FromSourceCodePage> -t <ToTargetCodePage> <FileNameTobeConverted.txt> > <DestinationFileName>

Thanks & regards
Sudhindra P S
by Sudhindra_ps
Mon Mar 24, 2008 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Character not inserting into Oracle DB.
Replies: 14
Views: 7777

hi, You could determine NLS settings on your Oracle DB by executing below SQL query. SELECT * FROM NLS_SESSION_PARAMETERS; Just try inserting the character you are talking about in the DB as an first step. If it is fine then check whether code page on your ETL OS is same as that you see in DB. If no...
by Sudhindra_ps
Mon Mar 24, 2008 3:13 pm
Forum: General
Topic: Do Informatica skills translate to Datastage skills?
Replies: 14
Views: 8172

hi, If one has good amount of experince in Informatica, he could apply the same concepts in Datastage too. As Datastage has various stages(Transformations) in it which can support any complex logic to be applied. The basic criteria to work with any ETL tool, one need to have solid understanding of O...
by Sudhindra_ps
Mon Mar 24, 2008 12:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to join without a key column
Replies: 3
Views: 2491

hi,

You could create a dummy column in all of your 5 datasets output link by using column genrator stage or Transformer stage and then merge data using this Dummy column as key column.

Thanks & regards
Sudhindra P S
by Sudhindra_ps
Mon Mar 24, 2008 12:11 pm
Forum: General
Topic: general validations
Replies: 3
Views: 2134

hi, You could achieve this by designing an Shared container job. But it all depends on your metadata you are processing on a job by job basis. It purely depends up on your business requirement and job design. The types of validations you have mentioned in your questionairre can be handled quite easi...
by Sudhindra_ps
Mon Mar 24, 2008 12:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Only inserts through Oracle Enterprise stage
Replies: 18
Views: 7487

hi,

You can write insert statements for both insert query placeholder as well as for update query place holder. This ensures you are not updating anything out there. As both SQL statements are of insert DML statements.

Thanks & regards
Sudhindra P S