第7天的openGauss每日一练里,我们将要学习openGauss的表空间概念。表空间(tablespace)与磁盘上的一个目录对应,用来管理数据对象。
课程学习
1.创建表空间
- 使用相对路径指定表空间的目录:数据库节点的数据目录/pg_location/相对路径
CREATE TABLESPACE ds_location1 RELATIVE LOCATION 'tablespace/tablespace_1';
- 指定owner
CREATE ROLE joe IDENTIFIED BY 'abce@123';
CREATE TABLESPACE ds_location2 OWNER joe RELATIVE LOCATION 'tablespace/tablespace_2';
- 查看表空间信息
omm=# \db
List of tablespaces
Name | Owner | Location
--------------+-------+-------------------------
ds_location1 | omm | tablespace/tablespace_1
ds_location2 | joe | tablespace/tablespace_2
pg_default | omm |
pg_global | omm |
(4 rows)
2.修改表空间属性
- 重命名表空间
ALTER TABLESPACE ds_location1 RENAME TO ds_location3;
- 修改表空间owner
CREATE ROLE jay IDENTIFIED BY 'abcd@789';
ALTER TABLESPACE ds_location2 OWNER TO jay;
- 查看表空间信息
\db
omm=# \db
List of tablespaces
Name | Owner | Location
--------------+-------+-------------------------
ds_location2 | jay | tablespace/tablespace_2
ds_location3 | omm | tablespace/tablespace_1
pg_default | omm |
pg_global | omm |
(4 rows)
3.在表空间中建表
create table ds_t1(id int, name char(30)) tablespace ds_location2;
- 通过视图查看表所在的表空间
select * from pg_tables where tablename = 'ds_t1';
omm=# select * from pg_tables where tablename = 'ds_t1';
schemaname | tablename | tableowner | tablespace | hasindexes | hasrules | hastriggers | tablecreator |
created | last_ddl_time
------------+-----------+------------+--------------+------------+----------+-------------+--------------+----------
---------------------+-------------------------------
public | ds_t1 | omm | ds_location2 | f | f | f | omm | 2021-12-0
7 21:11:11.527223+08 | 2021-12-07 21:11:11.527223+08
(1 row)
4.删除表空间
- 在删除一个表空间之前,表空间里面不能有任何数据库对象
drop table ds_t1;
DROP TABLESPACE IF EXISTS ds_location2;
DROP TABLESPACE IF EXISTS ds_location3;
课程作业
1.创建表空间,表空间tspc1使用相对路径指定所在目录,表空间tspc2指定owner为Lucy
create tablespace tspc1 relative location 'tablespace/tablespace_1';
create role lucy identified by 'abcd@123';
create tablespace tspc2 owner lucy relative location 'tablespace/tablespace_2';
在写第三条语句的时候,没带relative location是会报error的,这也说明了tablespace确实是跟磁盘上的储存目录相对应的。
2.在表空间tspc1中建表,并使用视图pg_tables查看信息
create table customer(
id int,
first_name char(30),
last_name char(30)
) tablespace tspc1;
select * from pg_tables where tablename = 'ds_t1';
schemaname | tablename | tableowner | tablespace | hasindexes | hasrules | hastriggers | tablecreator |
created | last_ddl_time
------------+-----------+------------+------------+------------+----------+-------------+--------------+------------
-------------------+-------------------------------
public | ds_t1 | omm | tspc1 | f | f | f | omm | 2021-12-07
21:17:22.766941+08 | 2021-12-07 21:17:22.766941+08
(1 row)
3.重命名tspc1,修改tspc2的用户为Lily,使用\db查看表空间信息
alter tablespace tspc1 rename to tspc3;
create role lily identified by 'abcd@456';
alter tablespace tspc2 owner to lily;
omm=# \db
List of tablespaces
Name | Owner | Location
------------+-------+-------------------------
pg_default | omm |
pg_global | omm |
tspc2 | lily | tablespace/tablespace_2
tspc3 | omm | tablespace/tablespace_1
(4 rows)
4.删除表空间
drop tablespace if exists tspc2;
drop table ds_t1;
drop tablespace if exists tspc3;
非空的tablespace不能直接删除,需要把里面的table先删掉之后才可以删除。
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。




