Search found 773 matches

by keshav0307
Tue Aug 11, 2009 7:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database tablename length in DS
Replies: 5
Views: 3590

no Idea about DB2, But for teradata yes it is restricted to 32
by keshav0307
Tue Aug 11, 2009 7:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to increase Performance of ds Job
Replies: 3
Views: 1894

what do you mean very low performance reading and writing the file??\
\how many records per second ?
how much you are expecting?
by keshav0307
Sun Aug 09, 2009 3:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance issue
Replies: 12
Views: 3869

if you are deleting all records from table, then truncate and load in best option.
may be the requirement is not clear, why your lead is not accepting if the performance will improve.
by keshav0307
Sun Aug 09, 2009 3:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Caught unknow exception from runLocally
Replies: 2
Views: 3648

are you getting white spaces too

then try

f isnull (AUDIT_IN_Agent_Activity.aac_share) or trim( (AUDIT_IN_Agent_Activity.aac_share)='' then 0 else DFloatToStringNoExp(AUDIT_IN_Agent_Activity.aac_share,8)
by keshav0307
Sun Aug 09, 2009 3:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: one record for each value which are seperated by delimitter
Replies: 8
Views: 4742

if EMP_SKILLS is last column then, you can do the pivoting in Shell script.
by keshav0307
Thu Jul 30, 2009 2:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Which is the better File Format
Replies: 8
Views: 3825

MS word has suggested word and auto correct option, can similar thing be implemented here, so that the typo error can be reduced.
by keshav0307
Wed Jul 29, 2009 8:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Which is the better File Format
Replies: 8
Views: 3825

very bad Ray. you don't have any idea.
by keshav0307
Wed Jul 29, 2009 6:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Upserts and Primary Keys/Unique Indexes
Replies: 6
Views: 2658

Does Oracle Enterprise stage need a primary key on the Oracle table itself to perform an upsert properly? or just a unique index?? Or neither?
either
by keshav0307
Wed Jul 29, 2009 6:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while truncating data set
Replies: 5
Views: 5124

was the job run by same user everytime?
by keshav0307
Wed Jul 29, 2009 6:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Which is the better File Format
Replies: 8
Views: 3825

The one which work better for the condition.
by keshav0307
Wed Jul 29, 2009 6:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join stage issue
Replies: 8
Views: 3334

have you checked the key checkbox?
can you use hash partition?
by keshav0307
Wed Jul 29, 2009 6:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Improve performance
Replies: 20
Views: 9080

if possible, Partition the data and process in parallel
by keshav0307
Mon Jul 27, 2009 7:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: using NOT LIKE in transformation
Replies: 3
Views: 2078

IF DRS_PS_D_PRJ.PROJECT_ID LIKE '8%' Then 'Y' Else 'N'
can be
IF LEFT(DRS_PS_D_PRJ.PROJECT_ID,1)='8' Then 'Y' Else 'N'

-----------

IF DRS_PS_D_PRJ.PROJECT_ID NOT LIKE '8%' Then 'Y' Else 'N'
can be
IF LEFT(DRS_PS_D_PRJ.PROJECT_ID,1)<>'8' Then 'Y' Else 'N'
by keshav0307
Mon Jul 27, 2009 6:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle EE Nullability & Decimal Warnings
Replies: 1
Views: 1237

its datastage warning, so you have to handle the null and conversion in datastage, rather then in the SQL.
by keshav0307
Mon Jul 27, 2009 6:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid Close Command
Replies: 4
Views: 3298

whats there in "DDM_OWNER_TEST.MISSING_SCENARIOS"
specially at line 6