Search found 3329 matches

by Sainath.Srinivasan
Tue Dec 30, 2008 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: pass a parametersthrough file
Replies: 15
Views: 4288

Or use dsjob to get list of parameters and fetch their values from db table (holding the values). The job run string call be prepared in shell and initiated.

All outside DS Basic.
by Sainath.Srinivasan
Tue Dec 30, 2008 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: pass a parametersthrough file
Replies: 15
Views: 4288

Or use dsjob to get list of parameters and fetch their values from db table (holding the values). The job run string call be prepared in shell and initiated.

All outside DS Basic.
by Sainath.Srinivasan
Tue Dec 30, 2008 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Variable length records loading to multiple tables
Replies: 11
Views: 2522

Options 1.) You can use CFF stage 2.) job1: Write output in a file with one extra field - the output tablename job2: Use another job to 'grep' records of specific table and load job3: Create sequencer to run job2 48 times - once for each table 3.) job1: Flatten the structure to an ALL column format ...
by Sainath.Srinivasan
Tue Dec 30, 2008 7:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to assign next value to the current record
Replies: 2
Views: 1173

You can sort the data in reverse order and use stage variables to get previous rows value.
by Sainath.Srinivasan
Wed Dec 17, 2008 6:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read Folder Size And Trigger A Job
Replies: 1
Views: 786

You can do that in a exec cmd stage of seqencer
by Sainath.Srinivasan
Fri Dec 12, 2008 9:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Integer to Date conversion
Replies: 10
Views: 1936

You can work with it as a string input. What have you attempted so far?
by Sainath.Srinivasan
Thu Dec 11, 2008 11:23 am
Forum: General
Topic: Combining 2 tables into a 1 file with differing MetaData
Replies: 11
Views: 2018

Why not? Just add a dummy null column to the first query.
by Sainath.Srinivasan
Thu Dec 11, 2008 11:16 am
Forum: General
Topic: Combining 2 tables into a 1 file with differing MetaData
Replies: 11
Views: 2018

That appears to be a UNION.

Why do you want to do in DataStage?
by Sainath.Srinivasan
Thu Dec 11, 2008 11:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Stage rejects records
Replies: 7
Views: 2940

Are you using Stored Procedure to load the target? 3 things you can do.... 1.) Create a constraint just before the target (Oracle) stage so that no rows are written into it. Try running the job. 2.) Check the table(s) dependant on the target table. If you do not have the permission, your DBA must be...
by Sainath.Srinivasan
Thu Dec 11, 2008 9:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Stage rejects records
Replies: 7
Views: 2940

1403 (No Data Found) is from some select. So it has nothing to do with Insert/Update - unless it impacts by triggering a select.
by Sainath.Srinivasan
Thu Dec 11, 2008 8:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Control Error
Replies: 11
Views: 2633

Try logging messages to see where it goes into abyss
by Sainath.Srinivasan
Thu Dec 11, 2008 7:17 am
Forum: General
Topic: Refreshing of Director
Replies: 12
Views: 4468

Tools -> Options

Set higher value for refresh interval.

PS : Post in appropriate section
by Sainath.Srinivasan
Thu Dec 11, 2008 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to abort the job if seq file contains any duplicates
Replies: 3
Views: 1220

Pass the duplicate row through a dummy link and set it to fail on 1 row.
by Sainath.Srinivasan
Thu Dec 11, 2008 4:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: process each record one at a time
Replies: 6
Views: 1458

Or use stage var if no new info from db is required