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

oracle 創建數據庫

編輯:Oracle數據庫基礎
 

--------------------------------------------------------
-- 創建表空間 和用戶
--------------------------------------------------------

/**刪除表空間*/
-- drop tablespace ssh_temp including contents and datafiles;
-- drop tablespace ssh_data including contents and datafiles;

/*創建臨時表空間*/
create temporary tablespace ssh_temp
tempfile 'D:\oracle\workspace\ssh_temp.dbf'
size 50m
autoextend on next 50m maxsize 2048m
extent management local;


/***創建數據表空間****/
create tablespace ssh_data datafile 'D:\oracle\workspace\ssh_data.dbf' size 50m
autoextend on next 50m maxsize unlimited logging
extent management local /**表示使用本地管理表空間***/
segment space management auto /***表示使用位圖來管理空閒段空間***/
;


-- drop user bestsoft cascade;
/**創建用戶**/
create user root identified by 123456
default tablespace ssh_data
temporary tablespace ssh_temp;


/**給用戶授權*/
-- grant connect,resource to root;
grant dba to root;

-- 登陸
connect root/123456;
 

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