oracle新建使用者,授權,建表空間語句

2021-08-30 22:43:26 字數 750 閱讀 9076

1.建表空間

create tablespace test datafile '/usr/lib/oracle/oradata/test.ora' size 100m reuse default storage(initial 500k next 500k pctincrease 20);

2.建使用者

create user test identified by test;//identified by 後面的是密碼,前面的是使用者名稱

3.使用者授權

grant resource,connect,recovery_catalog_owner to test;

grant create table to test;

alter user test quota unlimited on test;

alter user test default tablespace test;

4.刪除表空間

drop tablespace tablespacename including contents and datafiles;

5.刪除使用者

drop user user_name cascade

6.刪除表的注意事項

在刪除乙個表中的全部資料時,須使用truncate table 表名;因為用drop table,delete * from 表名時,tablespace表空間該錶的占用空間並未釋放,反覆幾次drop,delete操作後,該tablespace上百兆的空間就被耗光了。

oracle新建使用者,授權,建表空間語句

oracle建立表空間,建立使用者 關鍵字 oracle 表空間 使用者 建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf...

Oracle新建使用者 角色,授權,建表空間

oracle資料庫的許可權系統分為系統許可權與物件許可權。系統許可權 database system privilege 可以讓使用者執行特定的命令集。例如,create table許可權允許使用者建立表,grant any privilege 許可權允許使用者授予任何系統許可權。物件許可權 dat...

Oracle新建使用者 角色,授權,建表空間

oracle 資料庫的許可權 系統分為系統許可權與物件許可權。系統許可權 database system privilege 可以讓使用者執行特定的命令集。例如,create table許可權允許使用者建立表,grant any privilege 許可權允許使用者授予任何系統許可權。物件許可權 d...