oracle使用者管理

2022-06-24 11:33:06 字數 1831 閱讀 8739

使用者管理

sys system (管理員)

scott (普通使用者)

前提:oracle上,假設你是oracl的管理員,當需要建立使用者的時候,由你操作.

1,建立使用者(sys system使用者)

create user username identified by password

使用system使用者登入建立乙個edu使用者密碼為system

create user edu identified by system;

使用新建使用者edu登入

無法登入  建立的edu並不能通過conn立刻登入,需要進行下面步驟

2,賦予使用者相應的許可權

ps:oracle資料檔案位置

表和表空間及資料檔案的關係圖

3,完整的建立使用者

綜合場景

建立乙個使用者software,然後給他分配許可權,可以讓software登入資料庫,建立表,可以操作自己的表

**角色,最好刪除使用者

1,建立software使用者,密碼設定為system

create user software identified by system

2,要想software登入(連線資料庫)需要給其許可權

grant create session to software;

grant connect to software;

grant resource to software;

3,使用software使用者登入

conn software/system@orcl

3,software建立表

create table users(id number);

4,插入一條資料

insert into users values(1);

檢視select * from users;

5,刪除使用者

切換為system使用者

直接刪除無法刪除

如果使用者下面有了自己的資料物件必須在後面加關鍵字cascade級聯刪除

drop user software cascade;

oracle使用者許可權管理機制

Oracle使用者管理

1.建立使用者 概述 在oracle中要建立乙個新的使用者,使用create user語句,一般是具有dba的許可權才能使用。用法 create user 使用者名稱 identified by 密碼。案例 create user skycloud identified by skycloud 2....

Oracle 使用者管理

create user hywin identified by hywin 建立使用者 password 使用者名稱 修改密碼 alter user 使用者名稱 identified by 新密碼 drop user 使用者名稱 cascade 刪除使用者時,如使用者已經建立了表,那麼就需要在刪除時...

Oracle 使用者管理

1.建立使用者 create user ok identified by ok grant create session to ok 2.修改使用者密碼 alter user ok identified by ok1 3.檢視使用者資訊 select from dba users 4.找出和使用者相...