Operating System - HP-UX
1753822 Members
9028 Online
108805 Solutions
New Discussion юеВ

Re: abnormal increase in /oracle mountpoint

 
nagarjunadba
New Member

abnormal increase in /oracle mountpoint

Hi all,
I am Oracle DBA, today i check the bdf of my hp-ux server, i find that /oracle mountpoint's used size is increased ubnormally for about 9GB in last night.
can anyone give me command to find where the data is stored in /oracle drive for the last one day / recent data.

thanks and regards.
nagarjuna
2 REPLIES 2
DeafFrog
Valued Contributor

Re: abnormal increase in /oracle mountpoint

Hi N,

find the size of the files consuming more than 100mb :
cd /oracle
find . -xdev -size +100000000c -print

find files created after last night:

#touch -m -t /var/tmp/t1
#touch -m -t /var/tmp/t2
where format should be like 201102152000
#find . -type f \( -newer /var/tmp/t2 -a ! -newer /var/tmp/t1 \) -print

Regards,
FrogIsDeaf
Jose Mosquera
Honored Contributor

Re: abnormal increase in /oracle mountpoint

Hi,

A classic:
#cd /oracle
#du -k|sort -rn|more

Also check this post, could be useful for you:
http://h30499.www3.hp.com/t5/System-Administration/bdf-shows-file-system-full-but-a-du-k-shows-space-available/m-p/5176668#M459144

About lsof, this is a valid URL to look for last version:
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.84/

Rgds.