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

openGauss每日一练第 11 天 | 随堂笔记

原创 Eddie 2022-12-06
205

数据库是数据库对象的容器,在数据库中,可以创建模式、表、索引等数据库对象。openGauss数据库管理包括:创建数据库、删除数据库、重新命名数据库、查看数据库的信息。
创建一个新的数据库。缺省情况下,新数据库将通过复制标准系统数据库template0来创建,且仅支持使用template0来创建。

1.登录opengauss数据库。

root@modb:~# su - omm
omm@modb:~$ gsql -r
gsql ((openGauss 3.0.0 build 02c14696) compiled at 2022-04-01 18:12:00 commit 0 last mr  )
Non-SSL connection (SSL connection is recommended when requiring high-security)
Type "help" for help.

2.创建表空间enmtbs和数据库musicdb

omm=# create tablespace enmtbs relative location 'tablespace/enmtbs';
CREATE TABLESPACE
omm=# create database musicdb tablespace=enmtbs;
CREATE DATABASE

3.查看数据库默认的表空间信息

omm=# with my_tables  as
omm-#       (   select table_catalog, table_schema, table_name, table_type
omm(#           from information_schema.tables
omm(#          where table_schema not in ('pg_catalog', 'information_schema','dbe_perf')
omm(#        )
omm-# 
omm-#  select * from my_tables;
 table_catalog |  table_schema   | table_name | table_type 
---------------+-----------------+------------+------------
 omm           | db4ai           | snapshot   | BASE TABLE
 omm           | dbe_pldeveloper | gs_errors  | BASE TABLE
 omm           | dbe_pldeveloper | gs_source  | BASE TABLE
(3 rows)

4.查看数据库下有哪些模式。利用\dn命令查看。

omm=# \dn
     List of schemas
      Name       | Owner 
-----------------+-------
 blockchain      | omm
 cstore          | omm
 db4ai           | omm
 dbe_perf        | omm
 dbe_pldebugger  | omm
 dbe_pldeveloper | omm
 pkg_service     | omm
 public          | omm
 snapshot        | omm
 sqladvisor      | omm
 user1           | user1
(11 rows)

5.查看当前数据库omm有哪些表

omm=# with my_tables  as
omm-#       (   select table_catalog, table_schema, table_name, table_type
omm(#           from information_schema.tables
omm(#          where table_schema not in ('pg_catalog', 'information_schema','dbe_perf')
omm(#        )
omm-# 
omm-#  select * from my_tables;
 table_catalog |  table_schema   | table_name | table_type 
---------------+-----------------+------------+------------
 omm           | db4ai           | snapshot   | BASE TABLE
 omm           | dbe_pldeveloper | gs_errors  | BASE TABLE
 omm           | dbe_pldeveloper | gs_source  | BASE TABLE
(3 rows)

6.修改数据库musicdb的默认表空间为test;

omm=# create tablespace test relative location 'tablespace/test'; 
CREATE TABLESPACE
omm=# alter database musicdb set  tablespace test;
ALTER DATABASE

7.重新命名数据库

omm=# alter database musicdb rename to testdb;
ALTER DATABASE

8.修改数据库的默认用户为usertest,并删除数据库

omm=# create user usertest identified by 'Dongyunyun1';
NOTICE:  The encrypted password contains MD5 ciphertext, which is not secure.
CREATE ROLE
omm=# alter user usertest sysadmin;
ALTER ROLE
omm=# alter database testdb owner to usertest;
ALTER DATABASE
omm=# drop database testdb;
DROP DATABASE
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论