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

2021-08-08 14:07:24 字數 406 閱讀 7897

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;

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...