Oracle建立資料庫和使用者

來源:互聯網
上載者:User

Oracle建立資料庫和使用者

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

1.建立兩個資料庫的檔案

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

3.給使用者添加許可權

一、建立兩個資料庫的檔案(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 user monitor cascade;

親身實驗可用。

相關文章

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.