Search found 24 matches

by saxena_richa
Wed Jun 11, 2008 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SetNull with decimal fields
Replies: 1
Views: 1049

SetNull with decimal fields

Hi, I want to put Null into database for a particular decimal column if I dont get any value from source. But when I try to use the SetNull function , I get the followin error:- value larger than specified precision allowed for this column Need help to understand why I get this error and also the wo...
by saxena_richa
Mon Jun 09, 2008 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to load data by doing record by record comparision
Replies: 3
Views: 1815

How to load data by doing record by record comparision

Hello, I hv to load data frm a source view in foll way:- Compare the incoming record with existing ones in target, and if there is any difference, load the incoming record else dont load. There is no key column defined in the source, so we cant check any 1 column but need to check data in all the co...
by saxena_richa
Mon May 19, 2008 8:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SetNull() giving prob with decimal fields
Replies: 1
Views: 862

SetNull() giving prob with decimal fields

Hello, I want to set null value for some decimal fields. These fields are defined as number in my db(oracle). When i use SetNull() func to do this,it gives some precision related error and job aborts. But SetNull() function is working fine for date fields. What can be done to use SetNull() for decim...
by saxena_richa
Mon May 19, 2008 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Some instances of job not getting triggered
Replies: 1
Views: 776

Some instances of job not getting triggered

Hello, I am facing prob in calls to certain instances of one job sequencer. I have a call to one audit seq from within my parent seq. Parent Seq:- InitJob-> Job1, Job2, Job3, Job4 ........Job n Job1 -> AuditSeq.1 Job2 -> AuditSeq.2 ... Jobn ->AuditSeq.n The prob is that only certain instances of Aud...
by saxena_richa
Wed Mar 05, 2008 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while compiling parallel routine
Replies: 1
Views: 940

Error while compiling parallel routine

Hi, I am creating my first parallel routine. I created the code in C and after compiling it I kept it in lib folder of PXEngine. I am now able to view and use the routine in transfrmr bt wen i compile the job it gives error at transformer stage :-- 'Parameter specified but not used in flow:DSPXWorki...
by saxena_richa
Tue Jul 17, 2007 8:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call a routine with diff number of arguments
Replies: 1
Views: 1035

Call a routine with diff number of arguments

Hello, I want to know whether there is a way to call the same routine with different number of arguments. e.g CALL1:- rt1(arg1,arg2) CALL2:- rt1(arg1,arg2,arg3) I created a routine, and when i tested it , it doesnt give any error even if I provide the 3rd argument or not. But when I try to use it in...
by saxena_richa
Thu Sep 28, 2006 12:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to make one sequence wait for job in other seq
Replies: 1
Views: 954

How to make one sequence wait for job in other seq

Hello!
I m having two sequences A & B. They have to run in parallel. The prob is that i have one job in seq A that has to wait for a job in seq B to complete first. Is this possible? And if yes how? Would be grateful if you could provide any guidance.
by saxena_richa
Thu Apr 27, 2006 4:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: help! -- i want data from 3 rows to transpose into 3 cols
Replies: 8
Views: 2057

I saw the casestudy. It is not wht i m trying. Actually it is nt just readin a row nd makin columns out of it. It is exactly like a matrix transpose. 1 2 3 4 5 6 7 8 9 becomes... 1 4 7 <------ 2 5 8 3 6 9. So in effect my 1st row O/P will consist if I/P frm 2 rows below it also ( see -> 4 7 in first...
by saxena_richa
Wed Apr 26, 2006 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: help! -- i want data from 3 rows to transpose into 3 cols
Replies: 8
Views: 2057

help! -- i want data from 3 rows to transpose into 3 cols

I hv my src file as follows: cust prod UOM Jan Feb Mar c1 p1 u1 2 7 6 c1 p1 u2 1 5 7 c1 p1 u3 6 7 8 c1 p2 u1 2 3 5 c1 p2 u2 1 1 9 c1 p2 u3 6 7 8 i want target as :- cust prod mth u1 u2 u3 c1 p1 Jan 2 1 6 c1 p1 Feb 7 5 7 c1 p1 Mar 6 7 8 .......... and so on. i.e month cols become rows and units will ...