Search found 245 matches

by arunkumarmm
Mon Aug 23, 2010 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field from a word
Replies: 12
Views: 4806

Wait a sec, I have a different idea. When you say your delimiter is of more than one character, does it imply 2 identical characters or different values. For example, do you see 'ThisbbIs ... Sai, Thanks for your reply! I dont have any specific delimiter. I want to split the incoming string based o...
by arunkumarmm
Mon Aug 23, 2010 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ereplace doubt
Replies: 5
Views: 1875

Or you can use a basic tranformer to use ereplace.
by arunkumarmm
Mon Aug 23, 2010 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field from a word
Replies: 12
Views: 4806

The requirement does not specify multiple-character delimiters. ... Ray, I quoted that field fn will not accpet more than one char as delimiter. I'm sorry if that was not clear. As Field fn will not accept more than one char as delimiter, If it is server, I can use the Ereplace and replace that wor...
by arunkumarmm
Mon Aug 23, 2010 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help in doing substring
Replies: 10
Views: 4392

This code should work. Did you try this?

Code: Select all

Nm:Zinman, Dr Bernard (Mount Sinai Hospital, Toronto) 
svLastNm=Field(Nm,",",1) 
svFirstNm=Field(Field(Field(Nm,",",2),"(",1),' ',Count(Field(Field(Nm,",",2),"(",1),' ')+1) 
by arunkumarmm
Mon Aug 23, 2010 8:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to read a Payload xml
Replies: 5
Views: 2787

From What I know, these are called attributes. For example, Say below is your XML: <Root> <Item ShortName="James" LongName="James Andy" Number="123456" Code="444"> ABCD </Item> </Root> To read the value of the Item tag your XPath should be /Root/Item/text() An...
by arunkumarmm
Fri Aug 20, 2010 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File Stage
Replies: 1
Views: 863

Yes We can handle. Can you be more specific on your requirements?
by arunkumarmm
Fri Aug 20, 2010 10:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To get Record count in Transformer
Replies: 15
Views: 21661

@INROWNUM Well, that will give you the record count so far , and you could write out the previous @INROWNUM on a key change to get the count for a key, but you'll miss the last key group. Also, it only gives you the count in this partition . So, no, there isn't really a way. You could reduce the co...
by arunkumarmm
Thu Aug 19, 2010 8:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IIS 8.1 backup
Replies: 5
Views: 2597

I'm sorry... my bad! :(
by arunkumarmm
Thu Aug 19, 2010 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IIS 8.1 backup
Replies: 5
Views: 2597

:################################################################### :#This script is used to take backups of Datastage jobs and # :#components # :#The script can be added as a scheduled task and can be made to # :#run in specific period of time. # :#It can be used for any project just by providing...
by arunkumarmm
Thu Aug 19, 2010 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we protect a portion of project?
Replies: 6
Views: 3556

You could export the jobs that you want, modify the dsx file to change the ReadOnly flag to 1 and re-import it. However, please keep in mind that this is a manual process and having some jobs as read-only and some without will be a little messy. But by doing this way no one will be able to edit tho...
by arunkumarmm
Thu Aug 19, 2010 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning with CFF Stage.
Replies: 5
Views: 1876

Also check whether the 'Usage' of that field is defined as 'COMP'
by arunkumarmm
Thu Aug 19, 2010 2:02 pm
Forum: General
Topic: Move jobs to different category
Replies: 4
Views: 1767

Move jobs to different category

If I need to move a set of job to a different category, In 7.5 Manager we will have a 'Move To' option. I'm not sure whether we have it in 8.1 or selecting the jobs and dragging it is the only option?
by arunkumarmm
Thu Aug 19, 2010 9:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Grouping
Replies: 6
Views: 3375

Which is the column you have as 'Key' in your XML output stage. If you want to create a XML record everytime your a2 value changes, keep it as 'Key' in your XML stage.

Also do remember that you can only define one repetition element...
by arunkumarmm
Thu Aug 19, 2010 9:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS job : SQL server(XML code) to Seq. File
Replies: 3
Views: 1428

Also Do remember to keep your "book id" as the repitation element.
by arunkumarmm
Tue Aug 17, 2010 10:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field from a word
Replies: 12
Views: 4806

Field will work only if the delimiter is one character. If the delimiter is more than one, it will take the first character as delimiter