Oracle建立表空間 建立使用者以及授權 檢視許可權

2021-08-27 12:47:53 字數 1748 閱讀 2527

建立臨時表空間

create temporary tablespace test_temp

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

size 32m

autoextend on

next 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 on

next 32m maxsize 2048m

extent management local;

建立使用者並制定表空間

create user username identified by password

default tablespace test_data

temporary tablespace test_temp;

給使用者授予許可權

grant

create session, create any table, create any view

,create any index, create any procedure,

alter any table, alter any procedure,

drop any table, drop any view, drop any index, drop any

procedure,

select any table, insert any table, update any table,

delete any table

to username;

將role這個角色授與username,也就是說,使username這個使用者可以管

理和使用role所擁有的資源

grant role to username;

(grant dba 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建立表空間,建立使用者

建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf size 32m autoextend on next 32m maxs...

oracle建立表空間,建立使用者

建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf size 32m autoextend onnext 32m maxsi...

oracle建立表空間,建立使用者

建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf size 32m autoextend on next 32m maxs...