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

Home -> Community -> Usenet -> c.d.o.server -> Re: drop user hangs

Re: drop user hangs

From: Daniel Morgan <damorgan_at_exxesolutions.com>
Date: Tue, 26 Aug 2003 08:17:14 -0700
Message-ID: <3F4B79FA.BD006E34@exxesolutions.com>


Rainer Herbst wrote:

> Howard J. Rogers schrieb:
> > "Rainer Herbst" <rherbst_@_rz.uni-potsdam.de> wrote in message
> > news:bicqd3$rd2$1_at_zeppelin.rz.uni-potsdam.de...
> >
>
> There might be a problem because of the SYSTEM tablespace is filled to
> 98%,
> <snipped>
> --
> ------------------------------------------------
> Rainer Herbst Linux - Registered
> ZEIK User #319157
> Universität Potsdam Usual disclaimers applies!
> ------------------------------------------------

Why? There should be nothing in the SYSTEM tablespace other than the catalog and stored code from procdures, functions, packages, and triggers: Rarely more than a few hundred MB.

Run the following:

SELECT table_name
FROM dba_tables
WHERE owner NOT IN ('SYS', 'SYSTEM','WMSYS', 'OUTLN') AND tablespace_name = 'SYSTEM';

SELECT index_name
FROM dba_indexes
WHERE owner NOT IN ('SYS', 'SYSTEM','WMSYS', 'OUTLN') AND tablespace_name = 'SYSTEM';

There shouldn't be anything.

--
Daniel Morgan
http://www.outreach.washington.edu/extinfo/certprog/oad/oad_crs.asp
http://www.outreach.washington.edu/extinfo/certprog/aoa/aoa_main.asp
damorgan_at_x.washington.edu
(replace 'x' with a 'u' to reply)
Received on Tue Aug 26 2003 - 10:17:14 CDT

Original text of this message

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