Oracle建立使用者並授權以及解除使用者鎖定狀態

2021-09-29 21:38:13 字數 979 閱讀 8977

oracle安裝完後,除了資料庫預設的資料庫使用者外,開發過程中還要建立自己的資料庫使用者,本文從建立使用者、使用者授權、刪除使用者以及解除使用者鎖定提供處理方法。

建立使用者名稱:username,使用者密碼:password,指定預設表空間:users。

create

user username identified by password default

tablespace users;

授權username使用者connect、resource、dba許可權。

grant

connect

,resource,dba to username;

也可把表的(select,insert,update,delete)許可權授權給另外使用者(otheruser):

grant

select

,insert

,update

,delete

on table1,table2 to otheruser;

通常我們遇到oracle使用者密碼輸入多次錯誤或者長時間不登入之後,那麼使用者就會變成鎖定狀態,通過plsql工具用dba許可權使用者登入,執行sql(解除使用者username 的鎖定狀態):

alter

user username account unlock

;

做專案運維的小夥伴可能會遇到資料庫使用者密碼過期的情況,要定期去修改密碼很麻煩,那麼我們可以設定使用者密碼不過期。

alter profile default

limit password_life_time unlimited;

刪除使用者以及和使用者關聯的資料。

drop

user username cascade

;

建立表空間:

oracle 建立使用者並授權

oracle內部有兩個建好的使用者 system和sys。使用者可直接登入到system使用者以建立其他使用者,因為system具有建立別 的使用者的 許可權。在安裝oracle時,使用者或系統管理員首先可以為自己建立乙個使用者。語法 建立使用者 create user 使用者名稱 identifi...

Oracle建立使用者並授權

1.用oracle使用者登入sqlplus sqlplus as dba 2.建立臨時表空間 miya temp 我的oracle安裝路徑是 data oracle product 11.2.0 db 1 在這個目錄下mkdir database create temporary tablespac...

oracle建立使用者並授權

microsoft windows 版本 10.0.18363.657 c 2019 microsoft corporation。保留所有權利。c users slinye sqlplus sql plus release 10.2.0.1.0 production on 星期一 3月 9 17 3...