Search found 3329 matches

by Sainath.Srinivasan
Tue Jul 28, 2009 2:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Mismatch of Records
Replies: 5
Views: 1513

From the looks, it must grab the correct row.

Are there any successful lookups also? If yes, try to find what is common in the successful ones which is not in the failed.
by Sainath.Srinivasan
Tue Jul 28, 2009 2:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Viewing Dataset form Production envi UNIX.
Replies: 3
Views: 1135

The catch here is - what do you mean by "from production environment" ?
by Sainath.Srinivasan
Tue Jul 28, 2009 1:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg: Extraction of a date from a string
Replies: 7
Views: 2382

You can split the logic in dd/mm/yyyy or dd/mon/yyyy as below In both cases: yourYear = MatchField(yourField, "0X4N0X",2) In mon: yourMonth = MatchField(upper(yourField), "0X'JAN'0X":Char(253):"0X'FEB'0X":Char(253):.......:"0X'DEC'0X", 2) You need to decide fo...
by Sainath.Srinivasan
Mon Jul 27, 2009 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parallel Jobs hanging in DataStage
Replies: 6
Views: 3653

Are there any ds phantoms or osh running ?
by Sainath.Srinivasan
Mon Jul 27, 2009 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column sort
Replies: 7
Views: 1544

Wonder whether the final result will make any sense !!??

But one possible solution can be

Source to be split into 2 sorts and add rownum in transformer followed by join by rownum.

What will be the volume? If it is a small source file, you may be better off doing in Unix itself.
by Sainath.Srinivasan
Mon Jul 27, 2009 4:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column sort
Replies: 7
Views: 1544

If you have 10 rows as
1 1
2 2
...
10 10

do you want it as
1 10
2 9
3 8
....
10 1

Is this assumption correct ?
by Sainath.Srinivasan
Fri Jul 24, 2009 12:50 pm
Forum: General
Topic: Constraints Set In Transformer Stage Don't Work
Replies: 13
Views: 4536

What if you remove constraint from second link and enable 'otherwise' ?
by Sainath.Srinivasan
Fri Jul 24, 2009 12:47 pm
Forum: General
Topic: Eliminate duplicates from file and capture in flatfile
Replies: 8
Views: 3405

Please define duplicates.

Are you looking for identical rows or duplicates by specific columns ?
by Sainath.Srinivasan
Fri Jul 24, 2009 12:45 pm
Forum: General
Topic: Null Handling
Replies: 15
Views: 3991

search for isNull or NullToZero
by Sainath.Srinivasan
Fri Jul 24, 2009 2:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FileName Date Comparision
Replies: 3
Views: 1307

Simpler method may be to do in sequencer.

You can read the list of files in execute command stage followed by encrypting the date in user activity and conditional stage with custom logic for dates.

If you want in Unix, you have to do your own date maths for date difference.
by Sainath.Srinivasan
Thu Jul 23, 2009 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can I make a DS image from production and put it on QA
Replies: 4
Views: 1488

Will you be communicating across the two machines at any point in time? If not, you can try doing it (other than datastage license) xmeta connections will be the main one to change. Also you might have to look into the ip address of the two machines if you are going to connect from same client. Not ...
by Sainath.Srinivasan
Thu Jul 23, 2009 2:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Preserver Partioning
Replies: 2
Views: 1130

Add a copy stage and do not propogate.
by Sainath.Srinivasan
Thu Jul 23, 2009 1:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Jobs Running Very Slow
Replies: 12
Views: 10867

Re: Datastage Jobs Running Very Slow

amitendra_amit wrote:All of sudden all the datajobs in our production environment has started running slow.
Sudden ??
by Sainath.Srinivasan
Thu Jul 23, 2009 1:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Find any letter in string value
Replies: 3
Views: 1905

Wonder what is the purpose of quoting those strings ?
by Sainath.Srinivasan
Thu Jul 23, 2009 10:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Jobs Running Very Slow
Replies: 12
Views: 10867

Errors ? Logs ?