暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

openGauss每日一练第10天 |表空间管理

原创 田灬禾 2022-12-04
232

打卡第十天,表空间管理

表空间是数据的容器,本节学习创建表空间、删除表空间、重命名表空间、查看表空间的相关操作。

openGauss自带了两个表空间:pg_default和pg_global。

  • 默认表空间pg_default:用来存储非共享系统表、用户表、用户表index、临时表、临时表index、内部临时表的默认表空间。对应存储目录为实例数据目录下的base目录。
  • 共享表空间pg_global:用来存放共享系统表的表空间。对应存储目录为实例数据目录下的global目录。


https://docs.opengauss.org/zh/docs/3.1.0/docs/Developerguide/%E5%88%9B%E5%BB%BA%E5%92%8C%E7%AE%A1%E7%90%86%E8%A1%A8%E7%A9%BA%E9%97%B4.html


学习目标

1、创建表空间t_tbspace、用户test,并使用test,在这个表空间上创建表t1

CREATE USER test IDENTIFIED BY 'kunpeng@1234';

CREATE TABLESPACE t_tbspace RELATIVE LOCATION 'tablespace/t_tbspace';

GRANT CREATE ON TABLESPACE t_tbspace TO test;

\c omm test
CREATE TABLE t1(i int) TABLESPACE t_tbspace;



2、查看表空间t_tbspace的oid和大小

select oid,* from pg_tablespace where spcname='t_tbspace';

SELECT PG_TABLESPACE_SIZE('t_tbspace');


3、查看数据库在默认表空间下有哪些对象

with objectInDefaultTS as
          ( select relname, relkind, relpages,pg_size_pretty(pg_relation_size(a.oid)),
                  reltablespace,relowner
            from pg_class a
            where a.relkind in ('r', 'i')  and reltablespace='0'
         )
 select * 
 from objectInDefaultTS 
   where relname not like 'pg_%' and relname not like 'gs_%' and relname not like 'sql_%'
 order by relpages desc;


4、查看数据库在非默认表空间下有哪些对象

 select relname,relkind,relpages,pg_size_pretty(pg_relation_size(a.oid)),
          reltablespace,relowner
   from pg_class a, pg_tablespace tb
   where a.relkind in ('r', 'i')
   and a.reltablespace=tb.oid
   and tb.spcname='t_tbspace'
   order by a.relpages desc;


5、重命名表空间

ALTER TABLESPACE t_tbspace RENAME TO xxx;


6、删除表空间

drop table test.t1;
DROP TABLESPACE xxx;


「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论