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

2022-04-15 13:44:26 字數 2047 閱讀 5349

建立臨時表空間

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

建立臨時表空間 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...