Oracle中使用者管理簡介

2021-05-22 05:05:16 字數 668 閱讀 2983

建立語法:

create user user_name identified by password default tablespace temporary tablespace

修改使用者命令:

alert user user_name identified by new_pwd;

使用者鎖定與解鎖:

alter user user_name account lock/unlock;

修改使用者的預設表空間和臨時表空間:

alter user user_name default tablespace new_space temporary tablespace temp_space;

相關的資料字典:

user_users

:用於檢視當前連線使用者的資訊;

all_users

:用於檢視資料庫中所有使用者的名稱、

id、建立時間;

dba_users

:用於檢視資料庫中所有使用者的詳細資訊,如

name、id

、狀態、預設表空間、臨時表空間等等;

刪除使用者:

drop user user_name cascade

;如果使用者沒有包含任何物件則直接刪除,如果含有物件則必須加上

cascade

、否則會報錯。

linux中使用者管理

使用者就是系統使用者的身份,在系統中使用者儲存為若干竄字元 若干個系統配置檔案 使用者資訊涉及到的系統配置檔案 etc passwd 使用者資訊 使用者 密碼 uid gid 說明 家目錄 使用者使用的shell etc shadow 使用者認證資訊 組名稱 組密碼 組id 附加組成員 etc gs...

Linux帳號管理 中 使用者管理

摘要 本文簡要介紹了linux帳號管理的使用者管理。linux ubuntu10.0.4 1.系統管理員功能 1.1新建使用者 useradd usage useradd options 1.2修改使用者 usermod usage usermod options 1.3刪除使用者 userdel ...

oracle中使用者連線相關

檢視使用者連線 斷掉某一連線 檢視連線ip oracle中檢視使用者連線 select username,sid,serial status from v session where username 1 select sid,ses.serial ses.username,pro.username...