Search found 592 matches

by JoshGeorge
Tue Sep 18, 2007 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: After job subroutine(ExecDOS) error
Replies: 3
Views: 2708

Re: After job subroutine(ExecDOS) error

User id you are using is having permission issues.
ArijitS wrote: Access is denied.
by JoshGeorge
Tue Sep 18, 2007 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Use of SORT Stage
Replies: 3
Views: 1572

The Join stage requires inputs to be identically partitioned and sorted on the join keys, mainly for efficient memory management and quick processing. The data sets input to the Join stage must be key partitioned and sorted. This ensures that rows with the same key column values are located in the s...
by JoshGeorge
Tue Sep 18, 2007 5:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Joining 2 Files having different File formats
Replies: 5
Views: 1672

Use modify stage. There is a function - 'string_trim' (Ref. Orchestrate Operators guide 7.5 version) which can be used in modify stage to trim string. But you cannot trim both leading and trailing spaces using this function. This is the syntax : string_trim[character,direction,justify](string) This ...
by JoshGeorge
Tue Sep 18, 2007 5:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split Records
Replies: 7
Views: 2551

Did you try? Sed is an Unix command, you will find details about that command if you search. Above code will remove the first and last line from the input stream feeding to datastage.
by JoshGeorge
Tue Sep 18, 2007 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Joining 2 Files having different File formats
Replies: 5
Views: 1672

Set the APT_PAD_CHARACTER to space, then trim on both links for key fields to join and try.
by JoshGeorge
Tue Sep 18, 2007 4:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split Records
Replies: 7
Views: 2551

In the 'filter' option of your sequential file stage use the below code and try

Code: Select all


sed -e '$d' -e '1d'

by JoshGeorge
Tue Sep 18, 2007 1:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fatal Error & Warning , while runing the Job
Replies: 6
Views: 4041

ORA-00907: missing right parenthesis

Cause: A left parenthesis has been entered without a closing right parenthesis, or extra information was contained in the parentheses. All parentheses must be entered in pairs.

Action: Correct the syntax and retry the statement.
by JoshGeorge
Mon Sep 17, 2007 5:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: passing values to start loop using execute command
Replies: 9
Views: 4027

You can do this in many ways.
Pls. refer THIS post for one way of doing it.
by JoshGeorge
Mon Sep 17, 2007 4:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Change Capture Stage
Replies: 7
Views: 3290

You might want to use Surrogate Key Generator after Change Capture Stage. But What if I do not want this. This field is required to be populated in the target table, but since it is generated from a Surrogate Key Generator, I can not calculate a change on it also it can not be defined as a key as I ...
by JoshGeorge
Mon Sep 17, 2007 4:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject Mode in Sequential File
Replies: 4
Views: 1173

Re: Reject Mode in Sequential File

By default there is a record size limit in datastage. Pls. refer HERE Check the file size in the sequence job just before calling your main job and if your expectation doesn't match don't call the processing job, loop back . I am having a file of length 800, if the record size is above 800 i need to...
by JoshGeorge
Mon Sep 17, 2007 3:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: passing values to start loop using execute command
Replies: 9
Views: 4027

Right click and you will get the option for this.
Poornagirija wrote: I tried user variable stage but iam not able to add var.its not showing any add button.

No limits :)
But my question is like how to make this as generic in sequencer...
if there is any limit of passing the values to parameters..
by JoshGeorge
Mon Sep 17, 2007 3:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject Mode in Sequential File
Replies: 4
Views: 1173

Byte :?: Kilobyte :?: Megabyte :?:
by JoshGeorge
Mon Sep 17, 2007 3:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencer logic
Replies: 3
Views: 1482

Re: Sequencer logic

And what all are the error handling options you have set / checked in your job parameter tab?
dnat wrote: In Job activity 1, i have given the trigger as unconditional.

But, the problem is, if Job activity 1 aborts while processing the file, the whole sequencer aborts.