oracle建立資料表空間 建立使用者指定資料表空間並授權

來源:互聯網
上載者:User

標籤:使用   檔案   資料   ar   管理   size   res   log   

1.建立資料表空間

例如:

(1)資料表空間名為myplace;

(2)資料檔案路徑為E:\oracle\oracle_home\oradata\myspace

(3)檔案名稱為mydbf.dbf,空間大小為32M

(4)設定資料表空間自動擴充,每次擴充32M,最大空間為2048M

(5)本地管理資料表空間

 create tablespace myspace
    logging   
    datafile ‘E:\oracle\oracle_home\oradata\myspace\mydbf.dbf‘   
    size 32m   
    autoextend on   
    next 32m maxsize 2048m   
    extent management local; 

2.建立暫存資料表空間

例如:暫存資料表空間名字為temp_myspace

 create temporary tablespace temp_myspace
    tempfile ‘E:\oracle\oracle_home\oradata\myspace\temp_mydbf.dbf‘   
    size 32m   
    autoextend on   
    next 32m maxsize 2048m   
    extent management local;

3.建立使用者並指定資料表空間和暫存資料表空間

例如:

(1).使用者名稱為username

(2).密碼為password

(3).指定資料表空間為myspace

(4).暫存資料表空間為temp_myspace

create user username identified by password
    default tablespace myspace
    temporary tablespace temp_myspace;

注意:如果不指定暫存資料表空間將會預設使用系統的暫存資料表空間temp

查看當前暫存資料表空間:select * from database_properties where property_name = ‘DEFAULT_TEMP_TABLESPACE‘;

4.給使用者授權

(1).串連許可權——最基本的許可權(登入)

(2).開發人員的許可權(如:建表、索引)

  grant connect、resource to username;

5.查看使用者權限

select * from dba_role_privs;

相關文章

聯繫我們

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