程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> Oracle表空間操作,oracle表空間

Oracle表空間操作,oracle表空間

編輯:Oracle教程

Oracle表空間操作,oracle表空間


-- 查看表空間 SELECT tablespace_name, file_id, file_name, round(bytes / (1024 * 1024), 0)||'M' total_space FROM dba_data_files ORDER BY tablespace_name;    -- 創建表空間 create tablespace test logging   datafile '/data2/js/test_01.dbf' size 50m   autoextend on   next 50m maxsize 20480m   extent management local;   -- 新增表空間的數據文件 ALTER TABLESPACE test ADD DATAFILE '/data2/js/test_02.dbf' SIZE 1024M AUTOEXTEND ON NEXT 256M MAXSIZE 32767M;   -- 刪除表空間 drop tablespace WISDATA including contents and datafiles;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved