postgres 自带了两个表空间,pg_default, pg_global
表空间pg_default是用来存储系统目录对象、用户表、用户表index、和临时表、临时表index、内部临时表的默认空间。对应存储目录P A D A T A / b a s e / 表 空 间 p g g l o b a l 用 来 存 放 系 统 字 典 表 ; 对 应 存 储 目 录 PADATA/base/ 表空间pg_global用来存放系统字典表;对应存储目录PADATA/base/表空间pg
g
lobal用来存放系统字典表;对应存储目录PADATA/global/
pgsql 中表空间/数据库/模式 的关系:
表空间是物理结构,同一表空间下可以有多个数据库
数据库是逻辑结构,是表/索引/视图/存储过程的集合,一个数据库下可以有多个schema
模式是逻辑结构,是对数据库的逻辑划分
数据库以oid方式在base目录下存放。
postgres=# select * from pg_tablespace; oid | spcname | spcowner | spcacl | spcoptions ------+------------+----------+--------+------------ 1663 | pg_default | 10 | | 1664 | pg_global | 10 | | (2 rows) root@scutech:/var/lib/postgresql/12/main# du -h base 7.8M base/1 11M base/16386 11M base/13432 7.7M base/13431 7.8M base/16385 45M base root@scutech:/var/lib/postgresql/12/main# postgres=# select oid, datname, datlastsysoid, dattablespace from pg_catalog.pg_database order by 1,2; oid | datname | datlastsysoid | dattablespace -------+-----------+---------------+--------------- 1 | template1 | 13431 | 1663 13431 | template0 | 13431 | 1663 13432 | postgres | 13431 | 1663 16385 | test | 13431 | 1663 16386 | mydb | 13431 | 1663 (5 rows)