?
本文檔使用 PHP中文網(wǎng)手冊 發(fā)布
pg_tablespace存儲有關可用的表空間信息。 表可以放置在特定的表空間里,以幫助管理磁盤布局。
Unlike most system catalogs, pg_tablespace is shared across all databases of a cluster: there is only one copy of pg_tablespace per cluster, not one per database.
與大多數(shù)系統(tǒng)表不同,pg_tablespace在一個集群中的所有數(shù)據(jù)庫之間共享: 每個集群只有一份pg_tablespace的副本,而不是每個數(shù)據(jù)庫一個。
Table 45-37. pg_tablespace Columns
名稱 | 類型 | 引用 | 描述 |
---|---|---|---|
spcname | name | ? | 表空間名 |
spcowner | oid | pg_authid.oid | 表空間的所有者,通常是它的創(chuàng)建者 |
spclocation | text | ? | 表空間的位置(目錄路徑) |
spcacl | aclitem[] | ? | 訪問權限,請參閱 GRANT和 REVOKE獲取細節(jié) |
spcoptions | text[] | ? | 表空間級的選項,"keyword=value"字符串 |