標籤: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