Page 2 of 2

Posted: Tue Nov 14, 2006 10:41 pm
by DeepakCorning
Nishant,
Pretty Sure that the number of jobs will not fill up ur 8 - 12 gb of space.

One reason can be Log files but as u said they are gettign merged so should not the casue.

Check out wht Kduke had suggested...

Posted: Tue Nov 14, 2006 11:27 pm
by ray.wurlod
Run the find command suggested earlier. Something is growing rapidly. Note that auto-purge does not occur for jobs that abort. Auto-purge is triggered only by successful completion (status DSJS.RUNOK or DSJS.RUNWARN).

Posted: Wed Nov 15, 2006 6:56 am
by kduke

Code: Select all

#!/bin/ksh 
# 500mb 
find . -size +500000000c -exec ls -l {} \;
The find command has lots of options. The . is the directory it starts to look in. You cn make this / to look in every directory on the system. Usuaully you need to be root to do this or you get lots of errors. The -size says report files based on size. The + says greater than nnn. In this case nnn is 500000000 the c says nnn is based on characters not blocks. So this is 500mb.

Once you find some big files you need to find out what create them and then delete them without breaking you jobs. I would say that means moving them to another filesystem.