【PostgreSQL】資料表空間

來源:互聯網
上載者:User

標籤:post   text   建立資料庫   add   建立索引   指定   tables   alt   uniq   

在PostgreSQL中,資料表空間實際上是為表指定一個儲存目錄,這樣方便我們把不同的表放在不同的儲存介質或者檔案系統中。在建立資料庫、表、索引時都可以指定資料表空間。

1. 建立資料表空間

--資料表空間目錄必須是系統中已存在的目錄test=# create tablespace tb_01 location ‘/opt/postgresql/data/pg_data‘;CREATE TABLESPACE

2. 建立資料庫,指定資料表空間

test=# create database test01 tablespace tb_01;CREATE DATABASE

3. 修改資料庫的資料表空間

test=# alter database test01 set tablespace tb_02;ALTER DATABASE
--修改資料庫的預設資料表空間後,資料庫中表的資料表空間不會改變。

4. 建表時,指定資料表空間

test=# create table t1 (id int,note text) tablespace tb_01;CREATE TABLE

5. 建立索引時,指定資料表空間

test=# create index idx_t1_id on t1(id) tablespace tb_02;CREATE INDEX

6. 增加約束時,指定資料表空間

test=# alter table t1 add constraint unique_t1_id unique (id) using index tablespace tb_02;ALTER TABLE test=# alter table t1 add constraint pk_t1_id primary key (id) using index tablespace tb_02;ALTER TABLE

7. 把表移動到新的資料表空間

test=# alter table t1 set tablespace tb_02;ALTER TABLE--表移動過程中會被鎖定,所有的操作都被阻塞,包括Select,所以要選擇合適的時間移動表。

 

The End!

2017-08-20

 

【PostgreSQL】資料表空間

相關文章

聯繫我們

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