Oracle建立表空間 建立使用者以及授權

2021-09-02 22:20:47 字數 943 閱讀 1756

第一步,以最高端別 sysdba 身份登入資料庫

我用的是system登入

第二步:建立表空間

1、建立表空間

create tablespace test_tb

datafile 'e:\oracle\oradata\orcl\test_tb.dbf'

size 50m

autoextend on next 50m maxsize 2048m

extent management local;

2、建立臨時表空間

create temporary tablespace test_tb_temp

tempfile 'e:\oracle\oradata\orcl\test_tb_temp.dbf'

size 32m

autoextend on next 32m maxsize 1024m

extent management local;

第三步:建立使用者並授權

1、建立使用者

create user test_tb identified by test_tb default tablespace test_tb

temporary tablespace test_tb_temp;

建立了使用者 test_tb 密碼是 test_tb

預設在表空間 test_tb 和臨時表空間 test_tb_temp 裡面。

2、給使用者授權

grant connect,resource to test_tb;
將 connect,resource 角色許可權授權給 test_tb

grant dba to test_tb;
將 dba 角色許可權授權給 test_tb

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...