Search found 37 matches

by kudaka
Fri Apr 27, 2007 3:05 pm
Forum: General
Topic: Storage calculation
Replies: 2
Views: 1687

Storage calculation

Anybody can guide me to calculate storage required for working files? What to consider for calculating disk space required for staging, temp, hash, reject files etc. I also want to know space requrements for each project. Please send back any questions, if my inquiry is not clear.
by kudaka
Fri Aug 26, 2005 10:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Schedual
Replies: 11
Views: 4813

Thanks for your help. Let me check cron jobs.
by kudaka
Fri Aug 26, 2005 10:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Schedual
Replies: 11
Views: 4813

The original post is for windows. I searched the knowledgebase and replied with a question for Unix. I'm Sorry!! my OS is Unix.
by kudaka
Fri Aug 26, 2005 10:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Schedual
Replies: 11
Views: 4813

What scheduler it uses on Sun unix? Is it Cron?
Thanks for your reply.
by kudaka
Fri Aug 26, 2005 10:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Schedual
Replies: 11
Views: 4813

Oh.. ok. I ran it @ win 32 command prompt.
It lists only windows scheduled jobs.
All my DSjobs are scheduled in DS director.
Is there a way to list all scheduled jobs in my DataStage project?
by kudaka
Fri Aug 26, 2005 10:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Schedual
Replies: 11
Views: 4813

Re: Job Schedual

I am getting "Illegal verb -AT" message.
How can I list all the scheduled jobs in a project?
by kudaka
Wed Dec 08, 2004 6:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Filtering non alphanumeric charaters
Replies: 7
Views: 3357

I used convert function. It works. But, we need to list all the unwanted characters.

FYI:
Becuase I need ALPHA and DIGITS (alpha numerics), we can not use the 'MCA' or 'MCN' formats with Oconv. Same with "LETTERS" and "DIGITS" built-in transforms.

thanks for all the help.
by kudaka
Mon Dec 06, 2004 10:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Filtering non alphanumeric charaters
Replies: 7
Views: 3357

Filtering non alphanumeric charaters

Hello!
How to filter all non-alphanumeric charaters from a srting. (filter space,/,-,* etc).
Is there a option in oconv function for this? or any other transformation function available for this?

Input string:
'SY-002-1|SALINAS-E Boronda Rd/San'
Result:
'SY0021SALINASEBorondaRdSan'

Thank you
by kudaka
Mon Oct 11, 2004 2:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look for available number - routine question
Replies: 22
Views: 9591

I have not used the @INROWNUM, @OUTROWNUM in the solution to this problem. Instead, I have created a routine to open the unused number hash file and return the first number with every call then delete that number from hash file. This is very simple approach, but don't know why I could not thought ab...
by kudaka
Mon Oct 11, 2004 10:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Selecting Date which lies between 2 dates
Replies: 9
Views: 3071

When you use "iconv" on a date it will be converted to an integer (which is called internal (format) representaion of a date in DataStage)

Thanks.
by kudaka
Mon Oct 11, 2004 10:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Selecting Date which lies between 2 dates
Replies: 9
Views: 3071

Step1: Create a hash file (MyHash) with three fields: 1. Id -- Hard code this value with 'XYZ' 2. Date1 - integer - store your 1st date in the internal format (use iconv) 3. Date2 - integer - store your 2nd date in the internal format (use iconv) Step2: Do a look-up to Myhash with key expression = '...
by kudaka
Mon Oct 11, 2004 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look for available number - routine question
Replies: 22
Views: 9591

kcbland ,
Will you be able to explain this again? I could not make @OUTROWNUM work for me. It gives sequence numbers.
What should be in key expression?
and what is the derivation?
Thanks
-Kud
by kudaka
Fri Oct 08, 2004 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look for available number - routine question
Replies: 22
Views: 9591

I am not quite understood about using @OUTROWNUM.
Can you explain it again? How to do lookup and what we write in the derivation?
Thanks
by kudaka
Fri Oct 08, 2004 1:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look for available number - routine question
Replies: 22
Views: 9591

Thanks for all your great ideas. I didn't know that server job works without input. rownum also works great.

I will be very happy if you guys can help me on how to fetch unused numbers one at time (like stack). Also how do I delete the number after using it from the file?

Thanks for all your help.
by kudaka
Fri Oct 08, 2004 12:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look for available number - routine question
Replies: 22
Views: 9591

Yes it is vey slow. On the other hand we do not have any big table.

If I am success in building unused number file, how to fetch each number to assign it to my record? How to build stack mechanism in to data stage?
Looks like I am lost.