cancel
Showing results for 
Search instead for 
Did you mean: 

Hard disk space is consumed fast, how to free space?

Former Member
0 Kudos

Dear experts,

My IDES took about 20G of space in about 10 days.....What would have caused so fast consumption?

I checked SM37, there were not many jobs at background.

And how to clean up to free some space?

Thank you!

Accepted Solutions (1)

Accepted Solutions (1)

former_member185257
Participant
0 Kudos

What is the configuration of your SAP system (DB / OS / SAP Server)?

Former Member
0 Kudos

Win server 2008

Oracle 10g

Thanks~

former_member185257
Participant
0 Kudos

please check the oraarch filesystem size.

Did you off the oraarch filesystem?if not then stop that from sqlplus.

I think that is  your problem.

Former Member
0 Kudos

Don't need this service active?

I saw from other posts, this redo log is important to system.

For now I have redirect the location to another logical drive....

SQL> show parameter log_archive_dest;

SQL> startup mount;

SQL> alter system set log_archive_dest='/oracle/D28/oraarch' scope=memory;

Former Member
0 Kudos

At first check what folder/filesystem consumed most space. According to redo log it is important only for critical systems. I think for IDES it may be turned off

Regards

Roman

Former Member
0 Kudos

trying to archive redo log now

run{

   allocate channel dev1 type disk;                     

   backup as compressed backupset               

   format ‘/oracle/oraarchlogbak/log_t%t_s%s_p%p’

   (archivelog from time ‘sysdate-7’ delete input);      

   Release channel dev1;               

}

and will try following after archiving completed.

crosscheck archivelog all;

delete expired archivelog all;

or

delete archivelog until time ‘SYSDATE-10′;

or

delete archivelog all completed before 'sysdate-n'

not sure how it will end up....

former_member185257
Participant
0 Kudos

Are you sure that for oraarch filesystem your drive size is getting low?

If you sure,then go with the following link for reference

http://help.sap.com/saphelp_nw70ehp1/helpdata/en/e3/92fdd1fada9e4d87be08c217639c1f/content.htm

Answers (0)