ORACLE 11g 建立表空間 使用者(親測可用)

2021-09-25 14:21:11 字數 863 閱讀 1245

首先

select name from v$datafile;查詢出當前資料庫表空間,使用裡面的路徑

建立臨時表空間

1) 128m            表空間的初始大小

2) 100m            表空間的自動增長大小

3) 1024m        表空間最大的大小

注:臨時表空間是乙個磁碟空間,主要用於儲存使用者在執行order by等語句進行排序或彙總時產生的臨時資料。沒有臨時表空間,有些操作可能無法進行

建立資料表空間 注:

刪除表空間

sql> drop tablespace my_01 including contents and datafiles cascade constraints;

建立使用者

create user qin identified by 123456 default tablespace my_01 temporary tablespace my_temp;

這裡的qin為使用者名稱,123456為密碼;

給使用者賦權

sql> grant connect,resource to qin;

可以給各種許可權,如下:

grant connect,resource,dba to qin;

grant create view to qin; 

grant debug any procedure to qin;

注:oracle 11g 以前的版本的使用者名稱和密碼是不區分大小寫的; 

oracle 11g 使用者名稱和密碼預設區分大小寫,

可更改alter system set sec_case_sensitive_logon=false; 設定改為不區分大小寫

Oracle11g建立表空間語句

在plsql工具中執行以下語句,可建立oracle表空間。分為四步 第1步 建立臨時表空間 create temporary tablespace yuhang temp tempfile d oracledata yuhang temp.dbf size 50m autoextend on nex...

Oracle11g建立表空間語句

在plsql工具中執行以下語句,可建立oracle表空間。分為四步 第1步 建立臨時表空間 create temporary tablespace yuhang temp tempfile d oracledata yuhang temp.dbf size 50m autoextend on nex...

Oracle11g建立表空間語句

在plsql工具中執行以下語句,可建立oracle表空間。分為四步 第1步 建立臨時表空間 create temporary tablespace yuhang temp tempfile d oracledata yuhang temp.dbf size 50m autoextend on nex...