1. 程式人生 > >oracle11g建立表空間、使用者及授權

oracle11g建立表空間、使用者及授權

1、安裝完oracle資料庫之後,首先在windows執行中,輸入:sqlplus / as sysdba

出現如下提示表示成功連線到資料庫


2、建立表空間:

輸入:create tablespace test_temp datafile 'test_temp.ora' size 1000m;

test_temp:表空間名

test_temp.ora:表空間檔案路徑

3、建立使用者:

輸入:create user username identified by password default tablespace test_temp quota 500m on users;

4、給新使用者授權:

輸入:grant all privileges to username;