Search found 22 matches

by tiagogen
Thu Aug 31, 2006 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I process files from a directory with a pattern
Replies: 9
Views: 4383

ok!

I've figured out the last problem..., a semicolon in the final of string...

thanks for your helping!!
by tiagogen
Wed Aug 30, 2006 9:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I process files from a directory with a pattern
Replies: 9
Views: 4383

meena wrote:Can you say me whether it is a DS job or sequencer.
sequencer
by tiagogen
Wed Aug 30, 2006 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I process files from a directory with a pattern
Replies: 9
Views: 4383

it did not work...

I've tried to use a command like that in functin DSExecute.
But the "|" doesn't work fine. It seems to execute only the first command.
example:

"ls | grep PBRCT"

It only execute the "ls"

Is there another function to do that?

thanks!
by tiagogen
Wed Aug 30, 2006 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I process files from a directory with a pattern
Replies: 9
Views: 4383

How can I process files from a directory with a pattern

Hi! I have the following problem: In a directory I have many files to process, they have to begin with PBRCT*. To solve this problem, I've used a unix command (ls dir/PBRCT*) and then I mount a list to process each one of them: /xxx/xxxx/PBRCT.1.TXT;/xxx/xxxx/PBRCT.2.TXT and so on.. but, when I use ...
by tiagogen
Tue May 23, 2006 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Limitation in aggregator stage??
Replies: 2
Views: 1711

Limitation in aggregator stage??

Hi all! Anyone knows if there's a limitation in Agreggator, cause, everytime in my job, when the number of records to agregate is greater than 4 million, the job is aborted... Message: "Abnormal termination of stage agregator_Job..Aggregator_0 detected". My job is simple.. SEQ FILE ------>...
by tiagogen
Fri May 19, 2006 10:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with mkdbfile
Replies: 3
Views: 2007

Yes, I know that!

But my doubt is about the warning message..
by tiagogen
Fri May 19, 2006 9:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with mkdbfile
Replies: 3
Views: 2007

Problems with mkdbfile

When I am trying to create a hashed file in another directory , I am doing that: 1. mkdbfile <dir>/aaa.hash 2. setfile <dir>/aaa.hash But , when I execute the setfile commad , the following warning apears to me: The DICT file pathname <dir>/D_aaa.hash does not exist Pointer aaa.hash was established ...
by tiagogen
Fri May 19, 2006 8:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: /.dshome or DSHOME environment variable is invalid or missin
Replies: 5
Views: 7166

I solved this problem using
. /1a01/datastage/Ascential/DataStage/DSEngine/dsenv :)
by tiagogen
Fri May 19, 2006 8:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: /.dshome or DSHOME environment variable is invalid or missin
Replies: 5
Views: 7166

/.dshome or DSHOME environment variable is invalid or missin

I'm trying to execute the mkdbfile command, but when I run it, that message appears: /.dshome or DSHOME environment variable is invalid or missing I already tried to configure that DSHOME, but without success... my command is in directory: /1a01/datastage/Ascential/DataStage/DSEngine/bin/mkdbfile An...
by tiagogen
Thu May 18, 2006 12:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Some doubts about hashed files
Replies: 3
Views: 1533

Some doubts about hashed files

Hi! I am creating a 64BIT hashed file, following the steps of others topics... And i have these doubts about it.. 1. What is a VOC file and where can I learn about it?? 2. To modify a file to 64bit I used: "RESIZE hash_filename 18 3937501 1 64BIT" *What is the meaning of modulo: 3937501 ?
by tiagogen
Thu May 18, 2006 10:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed files greater than 2Gb
Replies: 4
Views: 1840

Thanks!
by tiagogen
Thu May 18, 2006 10:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed files greater than 2Gb
Replies: 4
Views: 1840

Hashed files greater than 2Gb

Anyone knows if there's a problem if my hashed file is greater than 2GB?

I hear something about it... Is it true? Or i can create hashed of any length...
by tiagogen
Thu May 18, 2006 10:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performace
Replies: 3
Views: 1269

I was with this problem of performance.

This problem happens when I do some search directly from databases.

To solve my problem , I put all my database that I need in hashed files before processing or sequencial file (depends for what I need)..
by tiagogen
Wed May 17, 2006 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I do a dynamic select?
Replies: 13
Views: 9166

No DSGuru,

gateleys is right. That's I want to do...

I don't want use job parameteres...

I am trying do what he said at this moment!
thanks!
by tiagogen
Wed May 17, 2006 7:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I do a dynamic select?
Replies: 13
Views: 9166

How can I do a dynamic select?

This is my problem: I have the following file(sequencial or hashed): cod: 1 2 3 And I need to do a select based on these numbers.. for instance: select * from table where cod = ? <cod> comes from my file (it's an index). and so, I will put these results in a file. How can I built somethig to do that...