oracle快速刪除schema/username

來源:互聯網
上載者:User

標籤:oracle快速刪除schema/use

 1.問題:

oracle該schema下的對象很多,3萬個以上,直接執行刪除使用者命令要很長時間,半小時未刪除完成

 2.刪除前的準備工作

  一般刪除使用者都是為了重新匯入該使用者資料(不刪除資料表空間),涉及到刪除該schema的重建,故刪除使用者前收集下該schema資訊

 1)查看使用者的預設資料表空間及暫存資料表空間
 set lines 300
 col username for a30
 select username ,default_tablespace,TEMPORARY_TABLESPACE from dba_users where username='TEST';

 2)查看該使用者的許可權和角色

   select privilege from dba_sys_privs where grantee='SYSADM'
 union
 select privilege from dba_sys_privs where grantee in (select granted_role from dba_role_privs where grantee='TEST' );

 3)擷取獲得授予使用者權限的指令碼

 select 'grant '||privilege||' to SYSADM;' from (select privilege from dba_sys_privs where grantee='SYSADM'
 union
select privilege from dba_sys_privs where grantee in (select granted_role from dba_role_privs where grantee='SYSADM' ));


 3.快速刪除使用者辦法

 1)停止串連該資料庫的應用服務

 (大部分的應用都用重連機制,不關閉應用服務的話應用會反覆的串連資料庫,即使使用資料庫kill session的命令也無法結束,會話會一直存在)

 2)執行指令碼獲得刪除該schema的指令碼

  test為要刪除的schema

  connect test/test
spool /home/oracle/del_test.sql;  
prompt --Drop constraint  
select 'alter table '||table_name||' drop constraint '||constraint_name||' ;' from user_constraints where constraint_type='R';
 
prompt --truncate table  
select 'truncate table '||table_name ||';' from user_tables;

prompt --Drop tables  
select 'drop table '||table_name ||' purge;' from user_tables;  

prompt --Drop indexes  
select 'drop index '||index_name ||';' from user_indexes;
    
prompt --Drop view  
select 'drop view ' ||view_name||';' from user_views;
 
prompt --Drop sequence  
select 'drop sequence ' ||sequence_name||';' from user_sequences;  
 
prompt --Drop function  
select 'drop function ' ||object_name||';'  from user_objects  where object_type='FUNCTION';
 
prompt --Drop procedure  
select 'drop procedure '||object_name||';' from user_objects  where object_type='PROCEDURE';
 
prompt --Drop package  
prompt --Drop package body  
select 'drop package '|| object_name||';' from user_objects  where object_type='PACKAGE';
 
prompt --Drop database link  
select 'drop database link '|| object_name||';' from user_objects  where object_type='DATABASE LINK';  
   
spool off; 

  3)sqlplus串連到該schema下,執行如上獲得的指令碼

   執行前查看下該schema下的對象,執行後再次查看下該schema下的對象

  SQL> select object_type,count(*) from user_objects group by object_type;

  4)kill掉串連資料庫的session

   select 'alter system kill session '''||sid||','||serial#||''' immediate;' from v$session where username='TEST'; 

  5)刪除該schema

   drop user test cascade;

  

     


 

oracle快速刪除schema/username

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.