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

openGauss每日一练第8天 | 学习心得体会

原创 四宝 2022-12-07
807

今日学习openGauss数据库中表、表空间等对象的关系


#进入数据库
su - omm
gsql -r

1、创建表空间newtbs1、ds_location1,查看表空间。

create tablespace newtbs1 relative location 'tablespace/test_tst1';
create tablespace ds_location1 relative location 'tablespace/test_tst2';
#查看表空间
\db


2、创建一个数据库newdb1,默认表空间为newtbs1。

#创建数据库
create database newdb1 with tablespace=newtbs1;


3、创建用户user5,并授予sysadmin授权限,访问数据库newdb1,在表空间ds_location1上,创建一个表newt1(表结构自定义)

#创建用户,并授权
create user user5 identified by 'kunpeng@1234';
alter user user5 sysadmin;
#创建表
create table newt1(col char(100)) tablespace ds_location1;


4、查看表所在的表空间。

#查询表所在表空间
select * from pg_tables where tablename='newt1';


5、查看表空间newtbs1、ds_location1上的对象。

#查询newtbs1上的对象
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='newtbs1'  
order by a.relpages desc;


#查询ds_location1上的对象
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='ds_location1'  
order by a.relpages desc;


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

评论