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

2021-09-28 19:26:34 字數 472 閱讀 4119

--建立表空間

create tablespace leon

datafile 'c:\leon.dbf'

size 100m

autoextend on

next 10m;

--刪除表空間

drop tablespace leon;

--建立使用者

create user leon

identified by leon

default tablespace leon;

--給使用者授權

--oracle資料庫中常用角色

connect--連線角色,基本角色

resource--開發者角色

dba--超級管理員角色

--給leon使用者授予dba角色

grant dba to leon;

---切換到leon使用者下

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 on next 32m maxs...

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

1.假如現在已經建好名為 newdb 的資料庫 2.建立使用者之前要建立 臨時表空間 若不建立則預設的臨時表空間為temp。sql create temporary tablespace db temp size 32m autoextend on next 32m maxsize unlimite...