oracle建立資料庫、資料表空間、使用者並授權

來源:互聯網
上載者:User
oracle建立資料庫、資料表空間、使用者並授權

在安裝完Oracle資料庫軟體之後可以使用預設的資料庫orcl,也可以根據需要建立自訂的資料庫。資料表空間用於對資料庫中的資源進行分類,每個使用者都有預設的資料表空間,也可以給使用者指定預設的資料表空間。

1、建立資料庫

簡單的方式是使用'Database Configuration Assistant'資料庫組態工具根據嚮導建立

2、建立資料表空間

在實際使用中需要建立自訂的資料表空間和暫存資料表空間

2.1、建立資料表空間

create tablespace tabspace_name
logging
datafile 'E:\app\oratable_space\ tabspace_name_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;

其中tabspace_name是資料表空間名稱,'E:\app\oratable_space\ tabspace_name_temp.dbf'是資料表空間的完整路徑檔案名稱,其它參數可以根據需要進行改變

2.2、建立暫存資料表空間

create temporary tablespace tabspace_name_temp
tempfile 'E:\app\table_space\ tabspace_name_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;

其中tabspace_name_temp是暫存資料表空間名稱,'E:\app\oratable_space\tabspace_name_temp.dbf'是暫存資料表空間的完整路徑檔案名稱,其它參數可以根據需要進行改變

3、建立使用者

在實際使用中需要建立使用者、指定資料表空間和暫存資料表空間並給使用者授權

3.1、建立使用者

create user user_name identified by user_password
default tablespace tabspace_name
temporary tablespace tabspace_name_temp;

3.2、給使用者授權

grant connect,resource,dba to user_name;



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.