第七天学习openGauss表空间的操作。
连接openGauss
su - omm gsql -r
1.创建表空间,表空间tspc1使用相对路径指定所在目录,表空间tspc2指定owner为Lucy
create tablespace tspc1 relative location 'tablespace/tablespace_1';
create role Lucy identified by 'abce@123';
create tablespace tspc2 owner Lucy relative location 'tablespace/tablespace_2';
2.在表空间tspc1中建表,并使用视图pg_tables查看信息
create table tabtest(id int, name char(30)) tablespace tspc1;
select * from pg_tables where tablename = 'tabtest';
3.重命名tspc1,修改tspc2的用户为Lily,使用\db查看表空间信息
alter tablespace tspc1 rename to tspc11;
create role Lily identified by 'abcd@789';
alter tablespace tspc2 owner to Lily;
\db
4.删除表空间
drop tablespace if exists tspc11;
--在删除一个表空间之前,表空间里面不能有任何数据库对象
drop table tabtest;
drop tablespace if exists tspc11;
drop tablespace if exists tspc2;
上面实际操作截图如下:


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




