Search found 19 matches

by thirupathireddy.gankidi
Tue Oct 22, 2013 8:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic to implement in Datastage
Replies: 9
Views: 4738

I am using DataStage 8.7 version...
by thirupathireddy.gankidi
Tue Oct 22, 2013 6:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic to implement in Datastage
Replies: 9
Views: 4738

yes, ';' is the delimiter to divide the column and also C2 is not fixed length.
by thirupathireddy.gankidi
Tue Oct 22, 2013 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic to implement in Datastage
Replies: 9
Views: 4738

Need a logic to implement in Datastage

my input is like : C1 C2 --- ------ 123 ABC;DEF;GEH Output : C1 C2 C3 C4 --- ------ ----- -------- 123 ABC DEF GEH Thanks in advance
by thirupathireddy.gankidi
Wed Oct 09, 2013 1:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic Help
Replies: 10
Views: 4300

Parametrise Previous Date,FUTURE DATE in your job and add below constraint in transformer.
EXPIRY_DATE>= Previous Date and EXPIRY_DATE<= FUTURE DATE
by thirupathireddy.gankidi
Tue Oct 08, 2013 9:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic Help
Replies: 10
Views: 4300

Can you elaborate your question with some source data...
by thirupathireddy.gankidi
Wed Sep 18, 2013 4:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to create Java Virtual Machine
Replies: 5
Views: 5693

Hi Prasoon Da,

I designed the job in Datastage v8.7 ,So i have not added DATASTAGE_JRE and DATASTAGE_JVM in my job.
by thirupathireddy.gankidi
Wed Sep 18, 2013 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Web Services Client fails with ServiceInvocation Exception
Replies: 1
Views: 2595

Web Services Client fails with ServiceInvocation Exception

DataStage Web Services Client stage fails with below error: Web_Services_Client_1,0: Fatal Error: Fatal: 0026`:`com.ascentialsoftware.wsclient.ServiceInvocationException: Service invocation exception: at com.ascentialsoftware.wsclient.WebService.callService(WebService.java:1602) at com.ascentialsoft...
by thirupathireddy.gankidi
Tue Sep 17, 2013 9:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to create Java Virtual Machine
Replies: 5
Views: 5693

Unable to create Java Virtual Machine

Job design in DS v8.7: Web_Services_Client-------->>peek DataStage job is aborting due to Below error: Web_Services_Client_0,0: Fatal Error: Fatal: TJClient::initialize: unable to create Java Virtual Machine; classpath = /opt/IBM/InformationServer/Server/DSEngine/java/lib/wsclient.jar /opt/IBM/Infor...
by thirupathireddy.gankidi
Mon Jun 25, 2012 11:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Error(Type Conversion)
Replies: 2
Views: 2000

Transformer Error(Type Conversion)

Source column Datatype is Varchar(16) and Data is coming like D3476654765 766546799989G 87978675436L And Target Column Data type is Decimal(20,0) I am doing Type conversion StringToDecimal(Src.Column) This function is not handling this column and getting warning as "Conversion error calling con...
by thirupathireddy.gankidi
Mon May 28, 2012 9:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing duplicate records using sort stage
Replies: 1
Views: 2317

Re: Capturing duplicate records using sort stage

Write two filter conditions

1)filter on Key change column =0 which gives duplicate records.
2)filter on Key change column =1 which gives unique records.
by thirupathireddy.gankidi
Tue Feb 21, 2012 10:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: please tell me the logic for this....
Replies: 6
Views: 5141

i am using datastage 8.5 version
by thirupathireddy.gankidi
Tue Feb 21, 2012 10:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: please tell me the logic for this....
Replies: 6
Views: 5141

please tell me the logic for this....

Hi,
can anyone please tell me the logic to implement this scenario...


my source is coming like,

id
---
2
5
3

and target is,

id
---
2
2
5
5
5
5
5
3
3
3


Thanks in advance


Regards,
------
Thiru
by thirupathireddy.gankidi
Tue Feb 21, 2012 6:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: tansformer logic in transformer for Data stage 7.5
Replies: 3
Views: 4227

tansformer logic in transformer for Data stage 7.5

Hi All, I have a scenario like this, source is coming like, id , Dept , value ----------- --------- ------ |10|13|15| , abc , 15 Desired output is, id , Dept , value ----------- --------- ------ 10 , abc , 15 13 , abc , 15 15 , abc , 15 Can anyone please explain the transformer loop logic for Datast...