oracle建立一個資料庫三步走_oracle

來源:互聯網
上載者:User

以前開發的時候用得比較多的是mysql和sql server,oracle用的比較少,用起來比較生疏,mysql和sql server用起來比較類似,就oracle的使用方式和他們不同,oracle在建立資料庫的時候要對應一個使用者,資料庫和使用者一般一一對應,mysql和sql server 直接通過create databse “資料庫名” 就可以直接建立資料庫了,而oracle建立一個資料庫需要以下三個步驟:

建立兩個資料庫的檔案

建立使用者與上面建立的檔案形成映射關係

給使用者添加許可權

一、建立兩個資料庫的檔案(monitor.dbf 和monitor_temp.dbf 兩個檔案)

CREATE TABLESPACE monitor LOGGING DATAFILE 'E:\app\owner\oradata\orcl\monitor.dbf' SIZE 100M AUTOEXTEND ON NEXT 32M MAXSIZE 500M EXTENT MANAGEMENT LOCAL;  create temporary tablespace monitor_temp tempfile 'E:\app\owner\oradata\orcl\monitor_temp.dbf' size 100m autoextend on next 32m maxsize 500m extent management local; 

二、建立使用者與上面建立的檔案形成映射關係(使用者名稱為monitor,密碼為monitor)

複製代碼 代碼如下:
CREATE USER monitor IDENTIFIED BY monitor DEFAULT TABLESPACE monitor TEMPORARY TABLESPACE monitor_temp;

三、添加許可權

grant connect,resource,dba to monitor; grant create session to monitor; 

有時候也會用到刪除資料庫和刪除使用者的操作,這裡也給出刪除的語句

四、刪除資料庫

DROP TABLESPACE monitor INCLUDING CONTENTS AND DATAFILES; 

五、刪除使用者

DROP TABLESPACE monitor INCLUDING CONTENTS AND DATAFILES; 

以上就是oracle建立一個資料庫的全部過程,大家可以嘗試建立一個資料庫,希望可以幫到大家。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.