Oracle建立使用者

2022-07-30 05:03:08 字數 2055 閱讀 9623

建立臨時表空間

create

temporary

tablespace test_temp

tempfile

'c:\oracle\product\10.1.0\oradata\orcl\test_temp01.dbf

'size 32m

autoextend

onnext

32m maxsize 2048m

extent management local;

建立使用者表空間

create

tablespace test_data

logging

datafile

'c:\oracle\product\10.1.0\oradata\orcl\test_data01.dbf

'size 32m

autoextend

onnext

32m maxsize 2048m

extent management local;

建立使用者並制定表空間

create

user username identified by

password

default

tablespace test_data

temporary tablespace test_temp;

給使用者授予許可權

grant

create session, create

anytable, create

anyview ,create

anyindex, create

anyprocedure,  

alter

anytable, alter

anyprocedure,  

drop

anytable, drop

anyview, drop

anyindex, drop

anyprocedure,  

select

anytable, insert

anytable, update

anytable, delete

anytable

to username;

將role這個角色授與username,也就是說,使username這個使用者可以管理和使用role所擁有的資源

grant role to username;

檢視所有使用者

select

*from

dba_users;

select

*from

all_users;

select

*from user_users;

檢視使用者系統許可權

select

*from

dba_sys_privs;

select

*from user_sys_privs;

檢視使用者物件或角色許可權

select

*from

dba_tab_privs;

select

*from

all_tab_privs;

select

*from user_tab_privs;

檢視所有角色

select

*from dba_roles;

檢視使用者或角色所擁有的角色

select

*from

dba_role_privs;

select

*from user_role_privs;

--

-----遇到no privileges on tablespace 'tablespace '

alter

user userquota 10m[

unlimited

]on tablespace;

Oracle 使用者建立

執行 cmd 進入 dos視窗 c sqlplus sys password as sysdba 使用sys使用者登入 sql create user username identified by password 建立使用者名稱和密碼 sql create tablespace ts userna...

Oracle建立使用者

當你建立使用者時,應該定義它的表空間 default tablespace 否則,它會使用系統表空間 system tablespace 這是應該避免的。這是常用的建立使用者的乙個例子 create user xx identified by xx profile default default t...

oracle 建立使用者

oracle10g建立使用者 oracle10g 的建立使用者名稱 1 linux 下oracle 的啟動以 oracle 身份登入 啟動lsnrctl start 登入sqplus nolog 連線資料庫 connect assysdba 啟動資料庫 startup 關閉資料庫 shutdown ...