openGauss 每日一练第 7 天打卡,我来了!又可以学习,真开心~

学习

今天第 7 课,学习 openGauss 表空间!

表空间用于管理数据对象,与磁盘上的一个。

课后作业打卡

1.创建表空间,表空间tspc1使用相对路径指定所在目录,表空间tspc2指定owner为Lucy

1
2
3
4
create tablespace tspc1 relative location 'tablespace/tablespace1';
create role Lucy password 'Lucifer-4622';
create tablespace tspc2 owner Lucy relative location 'tablespace/tablespace2';
\db

2.在表空间tspc1中建表,并使用视图pg_tables查看信息

1
2
create table lucifer(id int) tablespace tspc1;
select * from pg_tables where tablename = 'lucifer';

3.重命名tspc1,修改tspc2的用户为Lily,使用\db查看表空间信息

1
2
3
4
alter tablespace tspc1 rename to tspc3;
create role Lily password 'Lucifer-4622';
alter tablespace tspc2 owner Lily;
\db

4.删除表空间

1
2
3
4
drop table lucifer;
drop tablespace if exists tspc2;
drop tablespace if exists tspc3;
\db

写在最后

今天的作业打卡结束!🎉