Search found 44 matches

by pkomalla
Fri Oct 27, 2006 10:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SAS stage
Replies: 4
Views: 1178

SAS stage

Hi , I have a job which needs to load into sas datasets. I found in documentation that we have SAS processing stage and also a SAS dataset stage. But I couldn't see it in my palette. We have enterprise edition here. Are the SAS components a separte pack or do we have it in enterprise edition? if we ...
by pkomalla
Mon Oct 23, 2006 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disk space for a job
Replies: 3
Views: 1008

Disk space for a job

Hi All, I have a job with two remove duplicates , a lookup stage and two transformers. My source and target are database stages I have to run job with around 30 million records. Length of a record is 50 Can anyone suggest how much space do I need to have? how do i calculate the disk space needed? Th...
by pkomalla
Mon Sep 18, 2006 2:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Uncompress a table
Replies: 2
Views: 1150

Uncompress a table

Hi All,

Can anyone tell me the format to uncompress a oracle table
in a sql query.

thanks
by pkomalla
Fri Sep 08, 2006 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rejected row
Replies: 6
Views: 1919

Rejected row

Hi All, I have hash file as input to a transformer and two outputs( one for target table and one for target error table) In transformer I gave constraints as link1.rejected for the error table link1 is output to target table I am not getting the rejected row in error table but a warning which says &...
by pkomalla
Wed Aug 09, 2006 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling special characters
Replies: 12
Views: 5044

You can use

Iconv(columnname,"MCA"),"MCN") which gives data containing only alphabets and numerics, all other or removed
by pkomalla
Wed Aug 09, 2006 2:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling special characters
Replies: 12
Views: 5044

You can use

Iconv(Iconv(coulmnname, "MCA"),"MCN") to get only alphabetic and numerical values from the column and avoid all other.
by pkomalla
Wed Aug 09, 2006 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job running continuosly
Replies: 7
Views: 3124

Hi Atul, can u check if the same oracle tables are being used parallely by any other job or used in the same job. If so check if INITRANS AND FREELISTS of the tables are 1 or more(more than th no of times it is used parallely). If it is 1 and used parallely then it is the problem. Change the value
by pkomalla
Mon Aug 07, 2006 2:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem With Comma Separated File
Replies: 10
Views: 3518

Hi Bapajju, Did you solve the problem or else try this change(change(change(coulmn name,'","','|'),',',' '),'|','","') I think this should work. It first converts "," to | and then changes the comma with in a string value to space and finally converts | back to ",&...
by pkomalla
Wed Jun 28, 2006 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update SQL Query
Replies: 18
Views: 5710

Try to divide the updates and inserts in the transformer itself. Use Oracle stages two one for update and one for insert if you have inserts.

In transformer write constraints saying if ename=",.." and dept=.. then go to update stage or insert stage.
by pkomalla
Wed Jun 28, 2006 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatination Problem for Tab delimited file
Replies: 9
Views: 5192

I tried with the specification you gave, the results were fine. I got refernce column value when rate is null. results are
sap20.5
yrs
tmp10

I used -- refernce:rate as output column value in transformer

You can try with If len(rate)=0 then reference else reference:rate
by pkomalla
Wed Jun 28, 2006 8:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Links are missing in the DataStage Job
Replies: 5
Views: 2017

Once I faced an error saying 'DS_JOBOBJECTS cannot be written' this is because I had no permissions to make changes in that project.

Yours may relate to some permissions problem or Datastage might have lost connection to unix as DS_JOBOBJECTS gives the path to home directory
by pkomalla
Thu Jun 22, 2006 5:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Same job with different functions
Replies: 5
Views: 1272

If you call the sequencer from unix .......then you can clear the file while you call the job .
by pkomalla
Thu Jun 22, 2006 5:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performance issue
Replies: 7
Views: 1788

performance issue

Hi all, I am running a job which extratcs data from one Oracle database passes trough a transform and loads into another oracle DB. Last week it ran at 100 rows/sec now its running at lessthan 1 row/sec. We tested the sql code on oracle DB its running fine. It seems their is some problem with datast...
by pkomalla
Wed Jun 14, 2006 10:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query in ODBC stage
Replies: 4
Views: 1429

I found the problem........We cannot have two parameters(?) unless we have two key columns....
by pkomalla
Wed Jun 14, 2006 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query in ODBC stage
Replies: 4
Views: 1429

Sorry guys ,....following is the correct query



Select
column a.
column b,
new coulmn
from
table A
where
(coulmn c=?)
union all
Select
column a.
column b,
new coulmn
from
table A
where
(coulmn d=?);

still i get the error