Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Free space in TEMP Tablespace ?

RE: Free space in TEMP Tablespace ?

From: Eric Buddelmeijer <Eric.Buddelmeijer_at_elegant.nl>
Date: Mon, 22 Aug 2005 14:18:10 +0200
Message-Id: <20050822121813.99E5F13EC1@coral.qinip.net>


I know I 'stole' it from some web site, but can't remember where. Gives you a start.  

SELECT tablespace_name,

       total_blocks,
       used_blocks,
       free_blocks,

    total_blocks*16/1024 as total_MB,
    used_blocks*16/1024 as used_MB,
    free_blocks*16/1024 as free_MB
FROM v$sort_segment;  

--

Van: oracle-l-bounce_at_freelists.org [mailto:oracle-l-bounce_at_freelists.org] Namens VIVEK_SHARMA
Verzonden: maandag 22 augustus 2005 13:50 Aan: oracle-l_at_freelists.org
Onderwerp: Free space in TEMP Tablespace ?

A very basic Qs :-  

How do we find the FREE Space Left in TEMP Tablespace at any point while the DB is running ?  

This does NOT appear in sys.dba_free_space.  

Thanks  

--
http://www.freelists.org/webpage/oracle-l
Received on Mon Aug 22 2005 - 07:20:18 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US