cancel
Showing results for 
Search instead for 
Did you mean: 

/oracle/SID/920_64 is 98%

Former Member
0 Kudos

Dear Guru's,

We are using sap on oracle 9 using sun solaris 10 operating system.

The file <b>/oracle/SID/920_64</b> size has reached 98%. Can u suggest what files can be deleted from that file system.

Regards

Akif

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Dear Markus,

Here is the result after running the command u suggested:-

bash-3.00# for i in `ls`; do du -ks $i; done

39 Apache

0 JRE

924 OPatch

314115 assistants

363607 bin

27 classes

117851 ctx

1605701 dbs

78393 demo

1 diagnostics

2081 ds

118 hs

303 install

12478 inventory

0 jar

247366 javavm

26726 jdbc

45701 jdk

71285 jlib

62466 jre

44683 ldap

226005 lib

113713 lib32

0 lost+found

10231 md

1064 mgw

44309 network

9 oci

23750 ocommon

1 oraInst.loc

570 oracore

42324 ord

3511 otrace

13095 oui

18365 owm

936 plsql

8685 precomp

84768 rdbms

1820 relnotes

5 root.sh

7 root.sh.old

0 sapbackup

6 slax

2236 sqlplus

234 srvm

1091 syndication

5 sysman

5 tg4ifmx

4 tg4ingr

5 tg4sybs

4 tg4tera

41506 ultrasearch

2182 wwg

18658 xdk

Regards

Akif

markus_doehr2
Active Contributor
0 Kudos

What you can check is the "dbs" subdirectory

[code]cd dbs

for i in `ls`; do du -ks $i; done[/code]

--

Markus

Answers (5)

Answers (5)

Former Member
0 Kudos

Thx alot Markus ,Vinod & Amit. As i have moved core file to other directory.

former_member204746
Active Contributor
0 Kudos

no need to move core files. if these are old, delete them immediately!

if they are fairly new, investigate oracle logs to see what happened and try to fix the problem in long term

Former Member
0 Kudos

Nope its just "core"

Former Member
0 Kudos

Dear Akif,

I think you should opt for the moving of the core file to some other location as it wont harm your existing system.As also there are no other files in that which you should delete.

Regards,

Amit

Former Member
0 Kudos

core a single file I think it is non oracle file then if it is 1.5 GB Move it to other location

This is your oracle home !!!

Vinod

Former Member
0 Kudos

Hi Markus,

I found some core files in dbs of 1.5 GB .So i moved that file to some other directory.As I check with other servers too in dbs i didnot find any core as such .Will it create any prob if i move core file?

Regards

Akif

Former Member
0 Kudos

I think u moved files start with core_* right

These are core dump files you can move or delete these dirs

Vinod

Former Member
0 Kudos

Friend,

Have a look in to the file system , Its is Dir /oracle/SID/920_64 which is 98%.

What dir it contains,I think this is the oracle home dir is it ??

Dont delete any files from here.Check your archive Dest if this is the same and your archives are in /oracle/SID/920_64 Zip them.

Vinod

markus_doehr2
Active Contributor
0 Kudos

Without knowing your filesystem structure it's impossible to tell.

To find out what is taking so much space try the following:

[code]cd /oracle/<SID>/920_64

bash

for i in `ls`; do du -ks $i; done

[/code]

This will list the amount of space used in the subdirectories. Post the result and we may suggest something.

--

Markus