Database Administration (MOSC)

MOSC Banner

Tablespace script is not alerting on ORA-1652: unable to extend temp segment by 128 in tablespace

edited Dec 9, 2011 7:38PM in Database Administration (MOSC) 8 commentsAnswered
Hi DBAs,

I need your help on the below one.

OS = RHEL AS4
DB=10.2.0.4
Storage = File system

We have the following script to alert us on whenever any tablespace having less than 5 GB.

Script :

select TABSPACE "Tablespace Name", FREESPACE "Free Space", TOTSPACE "Total Space", USEDSPACE "Used Space" from (
 select tablespace_name "TABSPACE", round(sum(maxbytes/(1024 * 1024 * 1024)),2) - round(sum(bytes/(1024 * 1024 * 1024)),2) "FREESPACE",
        round(sum(maxbytes/(1024 * 1024 * 1024)),2) "TOTSPACE",
        round(sum(bytes/(1024 * 1024 * 1024)),2) "USEDSPACE"
   from dba_data_files
  where autoextensible = 'YES'
  group by tablespace_name )
    where FREESPACE < 5;


Its working fine. But the problem is, we are not receiving following alert throw above script.


ORA-1652: unable to extend temp segment by 128 in tablespace METRICS_INDEX_2011

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center