Datastage Service or Job fails write error: No space left on device
Even though we have enough space for all the director for IBM IIS, We do get the error message "error: No space left on device"
Try to find if this is an inodes problem with:
df -ih
Try to find root folders with large inodes count:
for i in /*; do echo $i; find $i |wc -l; done
Try to find specific folders:
for i in /src/*; do echo $i; find $i |wc -l; done
To clear the &PH& directory from within DataStage:
Ensure there are no DataStage jobs running anywhere on the system by running "ps -ef | grep DSD"
From the DataStage Administrator, go to the Projects page, select the project whose file you want to clear and click the Command button. The Command Interface dialog box opens.
Type the following into the command field: CLEAR.FILE &PH& (all uppercase)
Click Execute to run the command and clear the file.