Search found 18 matches

by Orieos
Mon Apr 17, 2006 11:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI column type definition
Replies: 3
Views: 1361

Thanks Abhi.

That was the solution I adopted. It worked fine but...I still would like to know what's the cause of this situation ( besides bad development :) of course)

Regards
Ricardo
by Orieos
Mon Apr 17, 2006 10:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI column type definition
Replies: 3
Views: 1361

OCI column type definition

Hi guys! I'm facing a somewhat curious situation and I would like to know if someone ever faced this before. I have a very simple job: FlatFile ---------> OCI --------> FlatFile2 Inside the OCI stage, on Inputs, I'm declaring table XPTO with 2 columns and using pure insert: cod_x Char 2 dsc_x Char 5...
by Orieos
Wed Feb 22, 2006 10:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Faster Hashed File Creation
Replies: 4
Views: 1807

Hi ArndW. Thanks for your quick answer. I already knew that a large modulus takes more time because e pre-allocates disk space. But even knowing that doesn't help me explain why the link start with 500 rows/sec and almost at the end it bursts to 4000 droping in the end to 500 again. Correct me if I'...
by Orieos
Wed Feb 22, 2006 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Faster Hashed File Creation
Replies: 4
Views: 1807

Faster Hashed File Creation

Hi guys. I've been doing some searching (using the forum) on the best way to build hashed files and how to make their creation faster. I ran against some posts that explained the method to calculate the minimum modulus. I even used the Hashed File Calculator developed by Ray. I've been faced with a ...
by Orieos
Mon Feb 20, 2006 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File Loading Practice
Replies: 5
Views: 2388

Look at the bright side Craig. You also typed faster than I did... :D

Thanks guys.

Ricardo
by Orieos
Mon Feb 20, 2006 8:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File Loading Practice
Replies: 5
Views: 2388

Thanks Kenneth.

You've been a great help :D
by Orieos
Mon Feb 20, 2006 8:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File Loading Practice
Replies: 5
Views: 2388

Hashed File Loading Practice

Hi guys! I'm modifying a project in order to make it faster. In this project we have a DataStage Job built in a way that doesn't make much sense to me. That's why I would like to ask your opinion. The job is quite simple. ORAOCI ---------> FlatFile ----------> HashedFile When the job ends, the flat ...
by Orieos
Tue Jan 17, 2006 12:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameters
Replies: 2
Views: 1143

Hi murali. There are several ways of doing what you ask. I think the easiest way is creating a file like this: param1=value1 param2=value2 etc... You can put the file in your file system. Then create a small script which receives a parameter and returns it's value. Then grab the value and pass it to...
by Orieos
Fri May 06, 2005 4:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using iconv and oconv
Replies: 3
Views: 2460

Hi bandla.

If you try searching the forum you'll find many posts on this topic.

Here's a small clue on how to achieve what you wish:

Ans=OConv(IConv(<your_date>,"D DMY"),"D/YMD[4,Z,Z]")

Best regards
Ricardo
by Orieos
Tue Dec 28, 2004 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while viewing Sequential file:Readdelimited to manycol
Replies: 3
Views: 3456

Hi,

Does your file have a separator character?

if it doesn't check the sizes of the columns that you are passing to DS.

they must match the size of the file.

Hope it helps

Ricardo Soeiro
by Orieos
Thu Nov 18, 2004 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file without a first line
Replies: 11
Views: 4446

I think that what chullet is trying to say is:

1.Activate the Filter command box.

2.Write in the box something like --> tail +2 <your input file name>

3. There is no 3....it's done :D

Hope it helps

Ricardo
by Orieos
Thu Nov 18, 2004 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file without a first line
Replies: 11
Views: 4446

I would use a very simple unix command:

tail +2 inFile > outFile

then pass the outFile to Datastage...

Hope it helps

Ricardo
by Orieos
Mon Sep 13, 2004 1:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Routines in Transformer
Replies: 16
Views: 6394

I've got it. It's kind of strange but it has to do with my first line of the routine. Data=Trim(Data," ","B") I'm not sure but I think it does somenthing to the file (locks it somehow) and it freezes the job. I took it out and it worked nice. Thanx for all your help. Ricardo Soei...
by Orieos
Mon Sep 13, 2004 12:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Routines in Transformer
Replies: 16
Views: 6394

The tmp_table is just a database table. The exact same DB than the final table. I havent tried with an hash file but I expect it should work.

Ricardo
by Orieos
Mon Sep 13, 2004 12:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Routines in Transformer
Replies: 16
Views: 6394

Tony, I've already tried that. And the DBA told me trhere are no locks on the table. In fact when I change the job and load the file to a tmp table and, only after that, I use the routine it works just fine. The job only hangs when the input comes from a seq file. I'm confused. You say that you loa...