Search found 3329 matches

by Sainath.Srinivasan
Fri Aug 19, 2005 3:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: converting string to decimal
Replies: 13
Views: 20466

In DataStage, you can do arith computations on char field as long as they hold numeric values.

You need SADD only for larger values.
by Sainath.Srinivasan
Thu Aug 18, 2005 5:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: C Stage PlugIn function "Get" required
Replies: 7
Views: 2518

This is because the library file librfccm.o is not in the datastage lib dir.
by Sainath.Srinivasan
Wed Aug 17, 2005 3:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple instances of a string
Replies: 2
Views: 639

Right(YourString, 4)

Use conditional logic based on this.
by Sainath.Srinivasan
Tue Aug 16, 2005 12:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of days between two dates.
Replies: 17
Views: 7933

Cast them as integer and perform the compulation.
by Sainath.Srinivasan
Tue Aug 16, 2005 12:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a "buffer clear" at EOF?
Replies: 1
Views: 493

You need to identify the row by any method such as row number.

Search the forum for more info.
by Sainath.Srinivasan
Tue Aug 16, 2005 5:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Only create reject files if there is data
Replies: 4
Views: 1110

No. You need to add logic of managing files to achieve that.
by Sainath.Srinivasan
Tue Aug 16, 2005 2:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSetParam Problem
Replies: 3
Views: 1981

Make it string.
by Sainath.Srinivasan
Mon Aug 15, 2005 5:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help to perfom Vertical Pivot
Replies: 6
Views: 1327

Did you try using stage variables?
by Sainath.Srinivasan
Fri Aug 12, 2005 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple columns from multiple rows
Replies: 3
Views: 884

Can you post your solution so others having similar requirement may find it useful.
by Sainath.Srinivasan
Fri Aug 12, 2005 12:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL errors not captured or Displayed in Director
Replies: 3
Views: 983

You can use logic in DS. But unless it is from external connection to DS or included by some logic in DS, it is difficult to control and maintain.
by Sainath.Srinivasan
Fri Aug 12, 2005 12:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple columns from multiple rows
Replies: 3
Views: 884

You can use logic in transform to populate any of the 3 cols.

You can then use hash files to obtain them in one row.
by Sainath.Srinivasan
Fri Aug 12, 2005 6:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updat after Inserting
Replies: 6
Views: 1300

Try Update EDU_AGG_T Set Imm_Row = 'N' where ACC_NO in (SELECT MAX(ACC_NO) ACC_NO_KEY from EDU_AGG_T ) Or if you want to add both the Acc_Key also, then try Update EDU_AGG_T Set Imm_Row = 'N' where (ACC_NO, ACC_KEY) in (SELECT MAX(ACC_NO) ACC_NO2, ACC_KEY from EDU...
by Sainath.Srinivasan
Fri Aug 12, 2005 4:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updat after Inserting
Replies: 6
Views: 1300

Your inner-most SQL has 2 ACC_NO. Also it has 2 fields but the where clause attempts to match only one.
by Sainath.Srinivasan
Thu Aug 11, 2005 9:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updat after Inserting
Replies: 6
Views: 1300

Duplicate post.
by Sainath.Srinivasan
Thu Aug 11, 2005 9:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updat after Inserting
Replies: 1
Views: 377

You need to post the SQL and the error message to get any useful response.