1. 程式人生 > >oracle用戶管理

oracle用戶管理

bsp password 數據文件 pac 普通用戶 登錄 name pass 普通

用戶管理

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,賦予用戶相應的權限

grant create session to edu;

技術分享

PS:oracle數據文件位置

技術分享

表和表空間及數據文件的關系圖

技術分享

3,完整的創建用戶

create username identified bu userpassword;

default tablespace ****;

temmporary tablespace *****;

quota 3m on user;

技術分享

oracle用戶管理