Usage of the tablespace system and sysaux in the Oracle system

Source: Internet
Author: User

The following articles mainly describe the usage of the Oracle system tablespace system and sysaux. In fact, the usage of the Oracle system tablespace system and sysaux is very high in actual operations, when I was idle today, I saw my Oracle Database's Oracle system tablespace system. The usage of sysaux is very high. See the following:

The table space usage on the server is as follows:

Tablespace name tablespace size (M) used space (M) Use the largest partition than the idle space (M)

 
 
  1. LMS_TABLESPACE 32 .44 1.38 31.56 30.81  
  2. SYSAUX 310 309.25 99.76 .75 .75  
  3. SYSTEM 450 440.69 97.93 9.31 8.94  
  4. UNDOTBS1 25 11.75 47.00 13.25 11.94  
  5. USERS 5 .44 8.80 4.56 4.56  

The solution is as follows:

1. Check whether the system and sysaux tablespaces are automatically extended.

 
 
  1. SQL>select tablespace_name,AUTOEXTENSIBLE,INCREMENT_BY from dba_data_files; 

The AUTOEXTENSIBLE field value should be

YES, whether it is NO; INCREMENT_BY is the size of the automatically expanded space each time.

2. If your system tablespace is not automatically extended, you can use the following methods to expand it.

A. add data files in the system tablespace.

 
 
  1. SQL>alter tablespace system add datafile 'D:\OracleXE\oradata\XE\system_01.dbf' resize 1024M; 

B. Modify the data file of the system so that it can be automatically expanded and expanded.

 
 
  1. SQL>alter database datafile 'D:\OracleXE\oradata\XE\system_01.dbf' autoextend on;  
  2. SQL>alter database datafile 'D:\OracleXE\oradata\XE\system_01.dbf' resize 2048M;   

The above content describes the usage of the tablespace system and sysaux in the Oracle system. We hope it will help you in this regard.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.