Search found 68 matches

by HariK
Wed Sep 01, 2010 3:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job failed to extend rollback segment
Replies: 3
Views: 1945

Re: job failed to extend rollback segment

vinsashi wrote:table size was increased.
Think you need to increase the TEMP tablespace size
by HariK
Tue Aug 31, 2010 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformation logic - need to grab substring
Replies: 15
Views: 6691

All you have to do is to read posts by Craig or me to get the logic.
by HariK
Tue Aug 31, 2010 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: want to capture data which is causing error
Replies: 18
Views: 8569

Tanaya, do the following check.

select max(your_column_name) from your_oracle_table;

check the result whether it fits into range of SFLOAT.
by HariK
Tue Aug 31, 2010 6:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformation logic - need to grab substring
Replies: 15
Views: 6691

Re: Transormation logic

Assuming only one instance of '_' occurs and you need only last three characters.

If index(column_name,'_',1) > 0 Then right(column_name,3)
Else column_name
by HariK
Mon Aug 30, 2010 6:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to validate date function in datastage?
Replies: 2
Views: 9481

Re: how to validate date function in datastage?

how to implement the below rule in Datastage? i have a column "TransDate" the datatype is char and format is yyyymmdd yyyy should be start with "20" mm shd be value 01 through 12. what is your source? If it is a database use database function to convert into date and check if th...
by HariK
Mon Aug 30, 2010 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer stage problem
Replies: 7
Views: 4334

sequnum=(empno*2) - 1 I don't think "sequnum=(empno*2) - 1" would solve the purpose for the given sample data, considering the fact that employee number is not in sorted order. I believe "sequnum=(@inrownum*2)-1" would do for you. "sequnum=(empno*2) - 1" will solve the...
by HariK
Wed Aug 25, 2010 5:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Incomplete column value??
Replies: 6
Views: 6941

Re: Incomplete column value??

Could you post your job design and the complete error message. ie., the stage where you are getting the error, you can identify it by clicking show error or more buttons on compile window.
by HariK
Wed Aug 25, 2010 4:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: locking table when update and insert in to the same table
Replies: 5
Views: 2990

what are the write methods you are using in the target stages?
by HariK
Wed Aug 25, 2010 3:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading from excel
Replies: 5
Views: 3385

Re: Reading from excel

if the excel file has more than one sheet than converting to CSV will not work.
by HariK
Tue Aug 24, 2010 12:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null in update where clause
Replies: 13
Views: 6484

Subrat is the column COL2 is of number type or it is of Character type.

if it is Char then try using COALESCE(COL2,'0') and of course change the derivation in Datastage for this column to have string value.
by HariK
Thu Aug 19, 2010 2:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to generate unique keys for the same customer?
Replies: 8
Views: 4329

Yes, the customer would be treated as two different persons unless you have set the commit size to 1 and using sparse lookup.

just wondering why not remove duplicates on customer before doing the lookup.
by HariK
Thu Aug 19, 2010 2:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: APT_DEFAULT_TRANSPORT_BLOCK_SIZE
Replies: 17
Views: 8606

If you do not like to logon to Admin every now and then, Other way to check if the variable exists is trying to add the environment variable as a job parameter.
by HariK
Thu Aug 19, 2010 2:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get records rejected from reference link
Replies: 6
Views: 2720

After full outer join, you have to use conditions(transformer or filters would do) to restrict records with match to first output, only in source to second output and only in referecne to third output.
by HariK
Thu Aug 19, 2010 1:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to login to DataStage
Replies: 9
Views: 7324

1. I am not sure. We never faced any issue because of Citrix. 2. 45 Client licenses mean 45 concurrent DataStage client instances. it does not mean 45 Designer + 45 director + 45 Admin + 45 Manager. for example -- if user 1 opened 10 designers, user 2 opened 10 directors , user 3 opened 10 managers ...