How to find space used by ETL?

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
bobby28
Participant
Posts: 17
Joined: Mon Jan 17, 2005 9:56 am

How to find space used by ETL?

Post by bobby28 »

Hello:

Can you please help me find out the space utilized by an ETL on the unix box? In other words, if I create an ETL, how do I know the total space it has used?

Can I check the size of few files like RT_CONFIG, RT_LOG and find it out. I am not sure, please help.

Regards,
Bobby
DSguru2B
Charter Member
Charter Member
Posts: 6854
Joined: Wed Feb 09, 2005 3:44 pm
Location: Houston, TX

Post by DSguru2B »

What do you mean by size of ETL? If you mean size of a project then you can do df -k to utilize how many bytes are being used up by what parent directory. You can also check for size by doing ANALYZE.FILE RT_LOGxxx where xxx is the job id.
Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
kduke
Charter Member
Charter Member
Posts: 5227
Joined: Thu May 29, 2003 9:47 am
Location: Dallas, TX
Contact:

Post by kduke »

du -s ProjectDir

Is probably a better command.
Mamu Kim
DSguru2B
Charter Member
Charter Member
Posts: 6854
Joined: Wed Feb 09, 2005 3:44 pm
Location: Houston, TX

Post by DSguru2B »

kduke wrote:du -s ProjectDir

Is probably a better command.
Thats the command that was'nt coming to me. Its du. Thanks Kim.
Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

du supports the -k option as well, if you'd rather deal with sizes in 'K' (1024 byte) blocks than 512 byte blocks.
-craig

"You can never have too many knives" -- Logan Nine Fingers
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

du supports the h option in Dilbert, as in "duh" and "induhvidual" :lol:
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply