//建立臨時表空間
create temporary tablespace test_temp
tempfile 'e:/oracle/product/10.2.0/oradata/testserver/test_temp01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
//建立資料表空間
create tablespace test_data
logging
datafile 'e:/oracle/product/10.2.0/oradata/testserver/test_data01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
//建立使用者並指定表空間
create user username identified by password
default tablespace test_data
temporary tablespace test_temp;
//給使用者授予許可權
grant connect,resource to username;
//以後以該使用者登入,建立的任何資料庫物件都屬於test_temp 和test_data表空間,這就不用在每建立乙個物件給其指定表空間了。
使用pl sql來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...
PLSQL操作Oracle建立使用者和表
1 開啟plsql,填寫使用者名稱和密碼 初始有兩個使用者sys和system,密碼是自己安裝oracle資料庫時定的 database選擇orcl 預設資料庫,oracle中建立的使用者就像是mysql中建的資料庫,兩者有異曲同工之妙 2 登陸成功後在介面的頭部可以看到一下資訊,最上面的syste...
PLSQL操作Oracle建立使用者和表
1 開啟plsql,填寫使用者名稱和密碼 2 登陸成功後在介面的頭部可以看到一下資訊,最上面的system localhost orcl就表示是使用者system在登入狀態,其中選單欄的session可以登入 退出 關於3個基本去許可權介紹 connect 基本操作表的許可權,比如增刪改查 檢視建立...