Overview
Your tablespace report has started to report an issue with the GTRANS_I tablespace.
Example:
Tablespace: GTRANS_I
-------------------------------------------------------
Max. Size (M) : 65535
Current Size (M) : 59067
Current Free (M) : 35
Fragment count : 2
Percent Free Space : 9.92%
WARNING: Free space below 10 percent or 10 Mb, tablespace extension required.
-------------------------------------------------------
Solution
The maximum size for the tablespace should be increased to make the available space to be more than 10%. Please contact Customer Support asking to have more free space available for the GTRANS_I tablespace.
<supportagent>
- Connect to the database as a DBA.
-
See the details of the data files associated with the tablespace using the following SQL statement:
The associated datafiles could already be set as autoextensible which means that they should auto extend once the space is used, but the customer could still be getting these alerts.select file_name, round((maxbytes) / 1048576) maxbytes_MB, round((bytes) / 1048576) bytes_MB,
autoextensible
from dba_data_files a
where tablespace_name = 'GTRANS_I'
-
If auto-extend is not configured/taking place or the customer is still getting alerts, add another data file for the tablespace to increase the maximum tablespace. Use a query similar to the following:
ALTER TABLESPACE GTRANS_I ADD DATAFILE '/eva_cims2/oradata/B/dbsB.sp6'
Note: The queries will need to be adjusted according to the client's implementation and architecture.
SIZE 3000M;
</supportagent>
Comments
0 comments
Please sign in to leave a comment.