用**寫了個建立表空間的demo,直接貼**先儲存在這兒啦:
/*建立臨時表空間 */
drop tablespace user_data including contents and datafiles; --刪除表空間及對應檔案,不能手動停服務刪除檔案
create temporary tablespace supplier_temp
tempfile 'd:\oracle\mytablespace\supplier_temp.dbf'
size 20m --表空間的大小
autoextend on
next 50m maxsize 20480m
extent management local;
/*建立資料表空間 */
create tablespace supplier_data
logging
datafile 'd:\oracle\mytablespace\supplier_data.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
/*建立使用者並指定表空間*/
drop user suppliermanage
create user suppliermanage identified by supplier --建立使用者,並分配命名空間
default tablespace supplier_data
temporary tablespace supplier_temp
account unlock --解鎖使用者
/*分配許可權*/
grant create session to suppliermanage;--create session是乙個系統特權,它可以為使用者提供連線資料庫的能力
grant connect,resource,dba to suppliermanage; --對使用者angeos授予了連線資料庫和訪問資源的許可權
oracle建立使用者常用語句 建立使用者,授權
1.建立表空間 create tablespace user data logging logging 是物件的屬性,建立資料庫物件時,oracle 將日誌資訊記錄到練級重做日誌檔案中。代表空間型別為永久型 datafile d oracle oradata oracle9i user data.d...
oracle 建立使用者語句
無論是linux系統,還是windows系統,只要登入oracle之後,所有操作命令都是一樣的。如下 建立使用者 create user lxg identified by lxg default tablespace test 授權 grant resource,connect,dba to te...
Oracle表空間和使用者常用語句
刪除空的表空間,但是不包含物理檔案 drop tablespace tablespace name 刪除非空表空間,但是不包含物理檔案 drop tablespace tablespace name including contents 刪除空表空間,包含物理檔案 drop tablespace t...