1、如果有plsql客戶端,則可以使用該使用者登入,選中所有表 右鍵drop即可。
2、如果有刪除使用者的許可權,則可以:?
1drop
user
user_name
cascade
;
加了cascade就可以把使用者連帶的資料全部刪掉。
--建立使用者 create user 使用者名稱 profile default identified by 密碼 default tablespace 表空間名稱 temporary tablespace temp account unlock;?
1
2
3
--授權
grant
dba
to
使用者名稱;
grant
connect
,resource
to
使用者名稱;
3、如果沒有刪除使用者的許可權,則可以執行:
select 'drop table '||table_name||';' from cat where table_type='table'
ORACLE 刪除當前使用者下所有的表
加了cascade就可以把使用者連帶的資料全部刪掉 drop user hm dev cascade 刪除後再建立該使用者,重新授權即可 sql create user hm dev identified by 123456 sql grant create session to hm dev sq...
ORACLE下刪除當前使用者下所有物件
原文出自 好 頂,複製下做個筆記 sql 刪除某個使用者下的物件 set heading off set feedback off spool c dropobj.sql prompt drop constraint select alter table table name drop constr...
ORACLE下刪除當前使用者下所有物件 等等
通過第一條sql查到你本級資料表空間的目錄,然後通過第二條sql建立乙個名稱為 tbs lob 的專用表空間,注意你自己修改路徑。確保你的使用者擁有跨表空間的許可權。在控制台中執行第3行的命令 檢視表空間路徑 select tablespace name,file id,bytes,file nam...