標籤:資料庫 資料表空間
1、建立暫存資料表空間建立資料表空間時,dbf檔案一般存放在datafile檔案的存放目錄下(一般是在執行個體名命名的檔案夾下面)可以通過 select * from v$datafile;查看所有資料檔案的存放位置create temporary tablespace 資料表空間名 tempfile '/data/oradata/CHUANSHU/datafile/tmp_檔案名稱.dbf'size 50M autoextend on next 1M maxsize 1024Mextent management local;2、建立正式資料表空間create tablespace 資料表空間名 logging datafile '/data/oradata/CHUANSHU/datafile/檔案名稱.dbf' size 124M autoextend on next 1M maxsize 10240Mextent management local ;3、建立資料庫使用者create user username identified by passworddefault tablespace 資料表空間名temporary tablespace 暫存資料表空間名;4、給新建立的資料庫使用者授權grant dba to username;grant connect to username;grant resource to username with admin option;grant unlimited tablespace to inspur_rmw with admin option;//grant dba to username with admin option;可以完成該功能5、刪除資料表空間drop tablespace tabaspacename including contents and datafiles;//同時刪除資料表空間和資料檔案