Search found 203 matches

by mouthou
Wed Apr 13, 2005 2:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Checking for Valid Phone Numbers
Replies: 3
Views: 1532

Hi Kiran,

There is a function in PX called Num(input field). This returns 1 if the input varchar field is convertible to number. With this returned value you can find that it contains only numeric... 8)

Best of luck!
by mouthou
Wed Apr 06, 2005 1:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: trailing characters. Cant get rid
Replies: 8
Views: 5716

I think that these special characters are internal representation of characters in every editing application. 8)
by mouthou
Mon Nov 22, 2004 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help needed to stop the Job
Replies: 3
Views: 2817

Just to add a note to the reply. Inorder to use the command kill -9 <pid>, you have to be logged in as the owner of that process getting killed :!: .

Thanks.
by mouthou
Mon Nov 22, 2004 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-00060: deadlock detected
Replies: 11
Views: 9567

It is a problem with the way datastage handles the parallelism. try increasing the MAXTRANS database parameter for the table and the index on that table. But if you dont want parallesim, include the $APT_CONFIG file parameter in the job and modify it for single node file. It should run fine............
by mouthou
Mon Nov 22, 2004 12:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage Variable
Replies: 3
Views: 3297

the stage variables are some temporary variables defined in the transformer to play internally within it. it is very helpful in terms of complex calculations involving many intemediate calcualtions. if there is a field "FIELD1" for which the calculation is x * y + z. Inturn x,y,z has got s...
by mouthou
Tue Oct 26, 2004 4:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset vs Sequential file
Replies: 8
Views: 4975

But the nulls were displayed in Dataset stage and that too for all the records (not few records where the values are defaulted as you said). :? Instead of dataset, I used sequential file stage at the end. I got the values expected. Any idea why this is. Any problem with the dataset while uploading t...
by mouthou
Tue Oct 26, 2004 1:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset vs Sequential file
Replies: 8
Views: 4975

I also had this problem. when the working with the Dataset and the sequential file in the same job. After running the job, when I saw the data, it was all NULLs :shock: :!: . Any one knows the reason. I remember reading from a sequential file and putting in a dataset. and the dataset contains nulls ...
by mouthou
Mon Jul 05, 2004 12:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter Record with a Date
Replies: 2
Views: 2404

Sinc your files not associated with any keys, you can add one. say an additional field called DUMMY in both the files :idea: . set the value of 1 for this field in both the files, so that all the records from file1 and file2 will be picked up. Then using the lookup bassed on this DUMMY key, you can ...