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

oracle創建表空間腳本

編輯:Oracle教程

oracle創建表空間腳本


前言:

以前都是用oracle的工具生成表空間的,今天看到一種更方便、快速的方法---使用數據庫腳本。

/*分為四步 */
/*第1步:創建臨時表空間  */
create temporary tablespace airforce34  
tempfile 'D:\date\airforce34.dbf' 
  size 100m autoextend on ;  
 

--刪除臨時表空間: 
DROP TABLESPACE airforce34 INCLUDING CONTENTS AND DATAFILES;

/*第2步:創建數據表空間  */
create tablespace airforce34  
datafile 'D:\date\airforce34.dbf'   
 size 100m autoextend on ;  
 
/*第3步:創建用戶並指定表空間  */
create user airforce34 identified by airforce34
default tablespace airforce34  ; 
 
/*第4步:給用戶授予權限  */
grant connect,resource,dba to airforce34;


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