Linux下Oracle刪除使用者和資料表空間的方法_oracle

來源:互聯網
上載者:User

本文執行個體講述了Linux下Oracle刪除使用者和資料表空間的方法。分享給大家供大家參考,具體如下:

1.刪除某個使用者

SQL> conn /as sysdbaConnected.SQL> drop user userName cascade;

使用者已刪除

如果使用者無法刪除,並報錯:

ERROR at line 1:
ORA-01940: cannot drop a user that is currently connected

通過查看使用者的進行,並kill使用者進程,然後刪除使用者。

SQL> select sid,serial# from v$session where username='userName';SID  SERIAL#---------- ----------150    9019SQL> alter system kill session '150,9019';System altered.

2.刪除資料表空間

前提:刪除資料表空間之前要確認該資料表空間沒有被其他使用者使用之後再做刪除

複製代碼 代碼如下:
drop tablespace nsName including contents and datafiles cascade constraints ;

including contents 刪除資料表空間中的內容,如果刪除資料表空間之前資料表空間中有內容,而未加此參數,資料表空間刪不掉,所以習慣性的加此參數。
including datafiles 刪除資料表空間中的資料檔案。
cascade constraints 同時刪除 tablespace 中表的外鍵參照。

希望本文所述對大家Oracle資料庫程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.