oracle建立資料庫、資料表空間、使用者並授權
在安裝完Oracle資料庫軟體之後可以使用預設的資料庫orcl,也可以根據需要建立自訂的資料庫。資料表空間用於對資料庫中的資源進行分類,每個使用者都有預設的資料表空間,也可以給使用者指定預設的資料表空間。
1、建立資料庫
簡單的方式是使用'Database Configuration Assistant'資料庫組態工具根據嚮導建立
2、建立資料表空間
在實際使用中需要建立自訂的資料表空間和暫存資料表空間
2.1、建立資料表空間
create tablespace tabspace_name
logging
datafile 'E:\app\oratable_space\ tabspace_name_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
其中tabspace_name是資料表空間名稱,'E:\app\oratable_space\ tabspace_name_temp.dbf'是資料表空間的完整路徑檔案名稱,其它參數可以根據需要進行改變
2.2、建立暫存資料表空間
create temporary tablespace tabspace_name_temp
tempfile 'E:\app\table_space\ tabspace_name_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
其中tabspace_name_temp是暫存資料表空間名稱,'E:\app\oratable_space\tabspace_name_temp.dbf'是暫存資料表空間的完整路徑檔案名稱,其它參數可以根據需要進行改變
3、建立使用者
在實際使用中需要建立使用者、指定資料表空間和暫存資料表空間並給使用者授權
3.1、建立使用者
create user user_name identified by user_password
default tablespace tabspace_name
temporary tablespace tabspace_name_temp;
3.2、給使用者授權
grant connect,resource,dba to user_name;