Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Oracle 7.3.4 problem... SLOW Drop user
> Hello Folks,
>
>
> We have a legacy system on Oracle 7.3.4 on NT.
>
> I am dropping the user with cascade, but it is extremely slow???
Tends to be that way on v7.
> Can anyone tell me why? Can I stop it and restart it for beter
> performance?
Recursive SQL, specifically, transferring sys.uet$ to sys.fet$.
>
> I am doing the drop from a client machine, could this be the problem?
>
No.
> Any help would be appreciated!
>
Drop all the users tables individually.
eg.
set echo off term off pagesize 0 linesize 200
define dropuser='USERNAME'
select 'drop table &&dropuser.' || table_name || ' cascade constraints;'
from dba_tables
where owner=upper('&&dropuser')
/
use the resulting generated SQL to drop the users tables, then drop the user.
Jared
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Wed Aug 04 2004 - 12:10:07 CDT
![]() |
![]() |