Search found 49 matches

by visvacfirvin
Tue Aug 19, 2008 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Duplicate Error
Replies: 12
Views: 8223

Oh! Thanks Ray.

So if config file is not supplied, then it uses the default space. But it should have cleared it right? So he was actually referring to normal datasets instead of virtual datasets. Am I correct?
by visvacfirvin
Tue Aug 19, 2008 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Duplicate Error
Replies: 12
Views: 8223

Are the virtual datasets gets created in datastage home/Datasets directory?

I tried failing a job, it did not create anything there? Am I missing something here?
by visvacfirvin
Tue Aug 12, 2008 7:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parsing XML Tags with Dot
Replies: 2
Views: 1408

Oh..thts bad...We recieve bigger XML files with this format. I already have a solution in Java. I was exploring possibilities.

Anyways Thanks Ray!!!
by visvacfirvin
Tue Aug 12, 2008 1:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parsing XML Tags with Dot
Replies: 2
Views: 1408

Parsing XML Tags with Dot

Hi, I'm trying to convert XML to CSV. Is it possible to parse XML tag names with dots. For eg, we have the following structure. <?xml version="1.0" encoding="ISO-8859-1"?> <books.shiporder> <books.item> <books.title>Empire Burlesque</books.title> <books.note>Special Edition</book...
by visvacfirvin
Wed Aug 06, 2008 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamically modifying external function's logic
Replies: 9
Views: 2282

Hahaha... :D Thats not the case with us. I'll not rewrite the code and all. Users will have the ability to write logic and that logic will be executed. That will be small business logic they write in perl syntax. This will be embedded in Perl and executed. Now moving to Datastage,i know they might h...
by visvacfirvin
Wed Aug 06, 2008 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamically modifying external function's logic
Replies: 9
Views: 2282

Using external source stage to call perl programs? That wont be a nice option for us, as this would same as executing the Perl program we have now... :)
by visvacfirvin
Wed Aug 06, 2008 8:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamically modifying external function's logic
Replies: 9
Views: 2282

That did not strike me.. :)

Are you suggesting build ops for this logic?
by visvacfirvin
Wed Aug 06, 2008 8:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamically modifying external function's logic
Replies: 9
Views: 2282

Was waiting for my premium membership. We cannot embed the logic into the code because, the code changes very dynamically. We have about 100s of clients and the logic will be changed by users and our system will run with that logic. Currenly its done in Perl. We do use DS PX for other functionalitie...
by visvacfirvin
Mon Aug 04, 2008 1:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamically modifying external function's logic
Replies: 9
Views: 2282

Dynamically modifying external function's logic

Hi, Is it possible to dynamically modify the logic of external CPP routine. So for example i've routine to calculate value for column A. Now there are clients for which the logic changes dynamically say Client X - Logic 1 Client Y - Logic 2 Client Z - Logic 3 The logic will be different but the colu...
by visvacfirvin
Sun Aug 03, 2008 9:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Alphanumeric sequence using Row Generator
Replies: 5
Views: 2847

Ray,
This question is repeatedly asked in interviews. Is there a way we could use functions in row generator to generate alphanumeric sequence?

Thanks,
Firvin
by visvacfirvin
Mon Jul 28, 2008 8:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Command execute activity
Replies: 12
Views: 4715

Looks like its interpreting the outcome of wc -l as string. Try converting the value to integer.

Firvin.
by visvacfirvin
Mon Jul 28, 2008 12:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Command execute activity
Replies: 12
Views: 4715

I think the following command will work

wc -l <filename> | cut -f"1" -d" "

Thanks,
Firvin
by visvacfirvin
Mon Jul 28, 2008 12:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitioning in Filter stage
Replies: 1
Views: 980

Partitioning in Filter stage

Hi, I need a clarification regarding Partitions on Filter stage. For eg consider the following set of records. 1,NY 2,NJ 3,NJ 4,NY 5,NJ 6,NY Now i want to filter all the records from NY using filter stage(using two node config file). How does the partitioning works in the following cases. 1. Auto Pa...
by visvacfirvin
Fri Jul 25, 2008 7:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Alphanumeric sequence using Row Generator
Replies: 5
Views: 2847

Thanks Ray. Was trying different options in Row Generator for long time. Tht clears my confusion. :)