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: TEMP tablespace not Freeing the space

Re: TEMP tablespace not Freeing the space

From: Norman Dunbar <norman.dunbar_at_environment-agency.gov.uk>
Date: Fri, 23 Jun 2006 08:17:37 +0100
Message-Id: <s49ba3b5.080@environment-agency.gov.uk>

Morning 'Y',

>> "Jurijs Velikanovs" <j.velikanovs_at_gmail.com> 06/22/06 08:56pm >>>
>>Just in case you would like to find who is really consuming space
TEMP tbs:
<snip>

if you don't mind a small correction to your script :

SELECT   b.SID,
         b.username,
         b.machine,
         (SELECT VALUE 
            FROM v$parameter 
          WHERE NAME = 'db_block_size') * SUM (a.blocks)  / 1024
used_mb

    FROM v$sort_usage a, v$session b
   WHERE a.session_addr = b.saddr(+)
GROUP BY b.SID, b.username, b.machine
ORDER BY used_mb DESC;

Your version assumes an 8K block size, the above gets the exact block size and moves the multiply outside the 'loop' doing the SUM().

Cheers,
Norman.

Norman Dunbar.
Contract Oracle DBA.
Rivers House, Leeds.

Internal : 7 28 2051
External : 0113 231 2051

Information in this message may be confidential and may be legally privileged. If you have received this message by mistake, please notify the sender immediately, delete it and do not copy it to anyone else.

We have checked this email and its attachments for viruses. But you should still check any attachment before opening it.

We may have to make this message and any reply to it public if asked to under the Freedom of Information Act, Data Protection Act or for litigation. Email messages and attachments sent to or from any Environment Agency address may also be accessed by someone other than the sender or recipient, for business purposes.

If we have sent you information and you wish to use it please read our terms and conditions which you can get by calling us on 08708 506 506. Find out more about the Environment Agency at www.environment-agency.gov.uk

--
http://www.freelists.org/webpage/oracle-l
Received on Fri Jun 23 2006 - 02:17:37 CDT

Original text of this message

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