Search found 103 matches

by Poovalingam
Sun Nov 21, 2010 6:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserted value too large for column, row rejected
Replies: 1
Views: 1733

Inserted value too large for column, row rejected

Hi all, When I tried to load around 1000 records to a Oracle table through OCI stage after reading from a seq file, lookup and some transformation, I'm getting error as below for 50 records and job aborted finally. "<job Name> got aborted with the following error: <JobName>.DefaultsLoad: <Updat...
by Poovalingam
Tue Nov 16, 2010 10:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Project Name
Replies: 2
Views: 1279

Thank you ArndW.
by Poovalingam
Tue Nov 16, 2010 9:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Project Name
Replies: 2
Views: 1279

Need Project Name

Hi all,
I need to generate Project Name dynamically and assign it to a Job parameter.
Is there any function or Macro or Basic Interfaces available in 8.1 Server?

Many Thanks,
Poova
by Poovalingam
Mon Nov 15, 2010 5:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sybase OC Stage with multiple read links
Replies: 4
Views: 2429

Thanks Ray. I will go with one DRS Stage per one link.

Thanks all.
by Poovalingam
Sun Nov 14, 2010 11:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sybase OC Stage with multiple read links
Replies: 4
Views: 2429

Hi all, I'm also getting the same warning when I'm using DRS Stage to connect to Oracle DB. I'm having 1 stream input and 3 reference links. Warning Message is, \<stage name>: When checking operator: Passive stages should have either one input link or one output link. Other configurations may run, b...
by Poovalingam
Thu Nov 11, 2010 5:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 7.1 - reports for jobs scheduled in data stage director
Replies: 2
Views: 2142

7.1 - reports for jobs scheduled in data stage director

Hi all, I need list of job names and execution time, day, interval for the jobs scheduled in data stage director. Instead of opening each and every folder and identifying the details, Is there any easy way to prepare report about the scheduled jobs. Any commands or any option available in data stage...
by Poovalingam
Sun Sep 26, 2010 11:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer as rowgenerator in 7.1 server jobs
Replies: 3
Views: 4340

Ya craig. It is < 1 or < 2 i'm trying. I wil go with @outrownum rather than @inrownum.

Mean time, if any faced the same problem, Pls add a comment here.
by Poovalingam
Wed Sep 22, 2010 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Menu Bar Missing from The IBM DataStage v8.1 Designer Window
Replies: 7
Views: 11918

I too facing the same problem. It looks like the above mentioned link is for 7.1.
If anyone knows, Pls share the steps to get rid of this problem in 8.1

many thanks,
Poova.
by Poovalingam
Mon Aug 09, 2010 12:03 am
Forum: General
Topic: Parallel invocation of job and handling abort
Replies: 3
Views: 5755

I have set "OK Conditional" between all JA and ExeCommand activities. It should be "Okay Conditional" according my requirement.
by Poovalingam
Thu Aug 05, 2010 9:27 am
Forum: General
Topic: Parallel invocation of job and handling abort
Replies: 3
Views: 5755

Re: Parallel invocation of job and handling abort

Thanks priyadarshikunal. My question is simply, when we run some activities in parallel in a job seq (no routine activity), without using exception handler will the job run all the activities even if any of activity failed. I thought "Automatically handle activities that fails" would suppo...
by Poovalingam
Thu Aug 05, 2010 8:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Handling
Replies: 10
Views: 2632

In Oracle, when you insert a empty string, this will be inserted as null I guess.

create table xx ( c1 varchar2(4));

insert into xx values ('');

select * from xx where c1='';
ans: no rows selected.

select * from xx where c1 is null;

Ans: c1
---
by Poovalingam
Thu Jun 10, 2010 10:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove duplicate
Replies: 4
Views: 1538

Thanks all. To be in safer side, I will order the key in Remove dup as same as order of hash key .
by Poovalingam
Thu Jun 10, 2010 2:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove duplicate
Replies: 4
Views: 1538

Remove duplicate

Hi all, I'm having a remove duplicate stage for which input link is from Copy Stage. I'm doing hash partition on x, y, z column in the copy stage and Same Partition is used on Remove Duplicate Stage with x, z, y as key columns to remove duplicate. Should the hash partition column order (xyz) and the...