Search found 3329 matches

by Sainath.Srinivasan
Wed May 06, 2009 6:01 am
Forum: General
Topic: Getting part of a filename
Replies: 16
Views: 7262

What have you tried ?
by Sainath.Srinivasan
Wed May 06, 2009 4:56 am
Forum: General
Topic: Neglect the duplicate from the string
Replies: 6
Views: 1244

Substrings
by Sainath.Srinivasan
Wed May 06, 2009 4:46 am
Forum: General
Topic: Neglect the duplicate from the string
Replies: 6
Views: 1244

What have you tried ?
by Sainath.Srinivasan
Wed May 06, 2009 3:21 am
Forum: General
Topic: Neglect the duplicate from the string
Replies: 6
Views: 1244

Substring to half its length !!
by Sainath.Srinivasan
Wed May 06, 2009 3:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup job failure
Replies: 7
Views: 2065

prasson_ibm wrote:and i dont believe on merge stage....i have seen that merge stage giving worng result...so plz provide me solution for this..??
Define "wrong result"
by Sainath.Srinivasan
Wed May 06, 2009 2:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the last business day of the given month.
Replies: 8
Views: 2583

That appears quite a huge code - especially to debug in case of any issues. Didn't go through it. Time dimension is the best answer. But assume it can also be resolved as svLastDayOfCurrMonth = (If CurrMM = 12 Then CurrYYYY : '-12-31' Else (CurrYYYY : '-' : CurrMM + 1 : -01') - 1 ) svWeekDay=WeekDay...
by Sainath.Srinivasan
Tue May 05, 2009 10:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can Data set be accessed from any external editor
Replies: 9
Views: 1937

Maybe you can use orchadmin and pipe to stdout.
by Sainath.Srinivasan
Tue May 05, 2009 10:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: extracting start and end position using index function
Replies: 15
Views: 10329

There are many ways to do it.

If you have located the position using Index, it must be easy to do a substring to extract the data.

Try it. If you hit any hurdles, give a shout with information of what you tried.
by Sainath.Srinivasan
Tue May 05, 2009 2:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Link keeps black
Replies: 15
Views: 4745

What if you put a copy and force it ?
by Sainath.Srinivasan
Sat May 02, 2009 4:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pass Column Value
Replies: 6
Views: 1682

Check the values in a tx and set to reject after 1 row.
by Sainath.Srinivasan
Fri May 01, 2009 9:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannor view the logs
Replies: 8
Views: 1921

It says error in opening dictionary. So think it is rebuilding issue.

What about other logs?
by Sainath.Srinivasan
Fri May 01, 2009 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting text to First Letter Capitalisation
Replies: 19
Views: 16850

You are doing a good job !! Couple of minor points. 1.) If you are doing malloc, you need malloc.h (if most compilers) 2.) Result is assigned to a random character pointer. Don't you think it is better to do a direct "result = str" so they point to the same place!!? This way you can use 'x...