Hello,
I was trying to clean up oracle trace and log files. We have 10 databases in this HP machine. The directory pattern is /oracle/admin/DBNAME/udump and /oracle/admin/DBNAME/bdump
Within /oracle/admin, I did
find */bdump/ -mame \* -mtime +90 -print -exec rm -r {} \;
find */udump/ -name \* -mtime +90 -print -exec rm -r {} \;
Or I could have done:
find */bdump/* -mame \* -mtime +90 -print -exec rm -r {} \;
find */udump/* -name \* -mtime +90 -print -exec rm -r {} \;
It seemed to delete old files fine. However, it also remove some bdump directories from half of the databases and some of the bdump directories were not old at all. This cause the shutdown for cold backup fail.
I wonder this is a bug in HP? Has anyone experienced this problem. We are one HP-UX 11.00 9000
Your input is very much appreciated.
I was trying to clean up oracle trace and log files. We have 10 databases in this HP machine. The directory pattern is /oracle/admin/DBNAME/udump and /oracle/admin/DBNAME/bdump
Within /oracle/admin, I did
find */bdump/ -mame \* -mtime +90 -print -exec rm -r {} \;
find */udump/ -name \* -mtime +90 -print -exec rm -r {} \;
Or I could have done:
find */bdump/* -mame \* -mtime +90 -print -exec rm -r {} \;
find */udump/* -name \* -mtime +90 -print -exec rm -r {} \;
It seemed to delete old files fine. However, it also remove some bdump directories from half of the databases and some of the bdump directories were not old at all. This cause the shutdown for cold backup fail.
I wonder this is a bug in HP? Has anyone experienced this problem. We are one HP-UX 11.00 9000
Your input is very much appreciated.