oracle 刪除使用者
對於單個user和tablespace 來說, 可以使用如下命令來完成。
步驟一: 刪除user
drop user ×× cascade
說明: 刪除了user,只是刪除了該user下的schema objects,是不會刪除相應的tablespace的。
步驟二: 刪除tablespace
DROP TABLESPACE tablespace_name INCLUDING CONTENTS AND DATAFILES;
但是,因為是供開發環境來使用的db, 需要清理的user 和 table space 很多。
思路:
Export出DB中所有的user和tablespace, 篩選出系統的和有用的tablespace,把有用的資訊load到一張表中去。
然後寫例程迴圈,把不在有用表的tablespace刪掉
1. select username,default_tablespace from dba_users;
2.
create table MTUSEFULSPACE
(
ID Number(4) NOT NULL PRIMARY KEY,
USERNAME varchar2(30),
TABLESPACENAME varchar2(60),
OWNERNAME varchar2(30)
);
3.
declare icount number(2);
tempspace varchar2(60);
begin
for curTable in (select username as allusr,default_tablespace as alltblspace from dba_users)
loop
tempspace :=curTable.alltblspace;
dbms_output.put_line(tempspace);
select count(TABLESPACENAME) into icount from MTUSEFULSPACE where TABLESPACENAME = tempspace;
if icount=0 then
DROP TABLESPACE tempspace INCLUDING CONTENTS AND DATAFILES;
end if;
commit;
end loop;
end;
執行後會報如下錯誤
ORA-06550: 第 10 行, 第 5 列:
PLS-00103: 出現符號 "DROP"在需要下列之一時:
begin case declare exit
for goto if loop mod null pragma raise return select update
while with
<<
close current delete fetch lock insert open rollback
savepoint set sql execute commit forall merge pipe
06550. 00000 - "line %s, column %s:\n%s"
*Cause: Usually a PL/SQL compilation error.
*Action:
好像是被鎖了。。
沒辦法,例程不能寫,就只能組出語句執行了。
把需要刪除的user, tablespace 匯出到Excel. 使用CONCATENATE 組出SQL.
貼到SQLdevelop 批次執行。
整個刪除會比較耗時間, 100多個user. 用了12個小時左右。
如要找datafile的具體位置,可以使用
select t1.name,t2.name from v$tablespace t1, v$datafile t2 where t1.ts# = t2.ts#;
SQL code
--刪除空的表空間,但是不包含物理檔案
drop tablespace tablespace_name;
--刪除非空表空間,但是不包含物理檔案
drop tablespace tablespace_name including contents;
--刪除空表空間,包含物理檔案
drop tablespace tablespace_name including datafiles;
--刪除非空表空間,包含物理檔案
drop tablespace tablespace_name including contents and datafiles;
--如果其他表空間中的表有外來鍵等約束關聯到了本表空間中的表的欄位,就要加上CASCADE CONSTRAINTS
drop tablespace tablespace_name including contents and datafiles CASCADE CONSTRAINTS;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28869493/viewspace-1471541/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle 禁止刪除使用者Oracle
- oracle級聯刪除使用者,刪除表空間Oracle
- Oracle資料庫使用者刪除Oracle資料庫
- Oracle使用者的建立和刪除Oracle
- 刪除使用者全部物件,不用刪除使用者(摘)物件
- 刪除 oracleOracle
- oracle批量刪除使用者物件新篇章Oracle物件
- oracle建立/刪除表空間、建立/刪除使用者並賦予許可權Oracle
- Oracle使用者的新增、修改、刪除及授權Oracle
- oracle刪除使用者後的恢復測試Oracle
- 1 刪除使用者oracle及組 oinstall ,dbaOracle
- 【刪除】【Oracle】完美刪除Windows系統上的Oracle軟體OracleWindows
- ORACLE刪除歸檔Oracle
- 【Oracle】刪除所有表Oracle
- Oracle閃回刪除Oracle
- oracle批次刪除表Oracle
- oracle delete 分批刪除Oracledelete
- oracle批量刪除表Oracle
- 快速刪除oracle物件Oracle物件
- 徹底刪除ORACLEOracle
- oracle刪除日誌Oracle
- 刪除GoldenGate使用者Go
- ORACLE刪除當前使用者下所有的表的方法Oracle
- Oracle中刪除使用者下所有物件的多種方法Oracle物件
- oracle 快速刪除大批量資料方法(全部刪除,條件刪除,刪除大量重複記錄)Oracle
- ubuntu 建立和刪除使用者Ubuntu
- linux刪除使用者命令Linux
- Oracle 增加 修改 刪除 列Oracle
- 刪除oracle重複值Oracle
- Oracle 多表關聯刪除Oracle
- Oracle Rac 刪除節點Oracle
- Oracle刪除效率測試Oracle
- Oracle中大資料量刪除Oracle大資料
- AIX徹底刪除ORACLEAIOracle
- 刪除AIX下的ORACLEAIOracle
- 新增/刪除約束(Oracle)Oracle
- Oracle序列使用:建立、刪除Oracle
- oracle 快速刪除大批量資料方法(全部刪除,條件刪除,刪除大量重複記錄) 轉Oracle