openGauss每日一练第11天 | openGauss逻辑结构:数据库管理
数据库是数据库对象的容器,在数据库中,可以创建模式、表、索引等数据库对象。缺省情况下,新数据库将通过复制标准系统数据库template0来创建,且仅支持使用template0来创建。一般使用安装用户omm安装好openGauss数据库后,使用omm用户登录数据库,可以看到有 template0、 template1、 postgres这3个数据库。
1、创建表空间enmtbs和数据库musicdb
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.
--创建表空间enmtbs
omm=# CREATE TABLESPACE enmtbs RELATIVE LOCATION 'tablespace/enmtbs1';
CREATE TABLESPACE
--创建数据库musicdb,且指定数据库默认表空间enmtbs
omm=# CREATE DATABASE musicdb WITH TABLESPACE = enmtbs;
CREATE DATABASE
2、查看数据库集簇中有哪些数据库
omm=# SELECT datname FROM pg_database;
datname
-----------
template1
omm
musicdb
template0
postgres
(5 rows)
omm=# \l
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-----------+-------+----------+---------+-------+-------------------
musicdb | omm | UTF8 | C | C |
omm | omm | UTF8 | C | C |
postgres | omm | UTF8 | C | C |
template0 | omm | UTF8 | C | C | =c/omm +
| | | | | omm=CTc/omm
template1 | omm | UTF8 | C | C | =c/omm +
| | | | | omm=CTc/omm
(5 rows)
3、查看数据库默认的表空间信息
--先通过pg_database查看数据库musicdb的默认表空间的oid,再通过表空间oid查找到这个表空间名称enmtbs
omm=# select spcname
omm-# from pg_tablespace
omm-# where oid=( select dattablespace
omm(# from pg_database
omm(# where datname='musicdb' );
spcname
---------
enmtbs
(1 row)
4、查看数据库下有哪些模式
--元命令\dn 或者 \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
(10 rows)
omm=# SELECT catalog_name, schema_name, schema_owner FROM information_schema.schemata;
catalog_name | schema_name | schema_owner
--------------+--------------------+--------------
omm | pg_toast | omm
omm | cstore | omm
omm | pkg_service | omm
omm | dbe_perf | omm
omm | snapshot | omm
omm | blockchain | omm
omm | pg_catalog | omm
omm | public | omm
omm | sqladvisor | omm
omm | dbe_pldebugger | omm
omm | dbe_pldeveloper | omm
omm | information_schema | omm
omm | db4ai | omm
(13 rows)
5、查询当前连接的数据库下有哪些表:
--使用cts语句,创建my_tables表,再查询my_tables表
with my_tables(table_catalog, table_schema, table_name, table_type) as
( select table_catalog, table_schema, table_name, table_type
from information_schema.tables
where table_schema not in ('pg_catalog', 'information_schema','dbe_perf')
)
select * from my_tables;
omm=# with my_tables(table_catalog, table_schema, table_name, table_type) 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、更改数据库默认的表空间
omm=# CREATE TABLESPACE app_ts RELATIVE LOCATION 'tablespace/app_ts1';
CREATE TABLESPACE
omm=# \db
List of tablespaces
Name | Owner | Location
------------+-------+--------------------
app_ts | omm | tablespace/app_ts1
enmtbs | omm | tablespace/enmtbs1
pg_default | omm |
pg_global | omm |
(4 rows)
omm=# ALTER DATABASE musicdb SET TABLESPACE app_ts;
ALTER DATABASE
omm=#
--查看musicdb数据库默认表空间已经修改成app_ts表空间了
omm=# select spcname
omm-# omm-# from pg_tablespace
where oid=( select dattablespace
omm(# from pg_database
omm(# where datname='musicdb' );
spcname
---------
app_ts
(1 row)
7、重新命名数据库
--把数据库musicdb重新命名为musicdb1
omm=# ALTER DATABASE musicdb RENAME TO musicdb1;
ALTER DATABASE
omm=# \l
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-----------+-------+----------+---------+-------+-------------------
musicdb1 | omm | UTF8 | C | C |
omm | omm | UTF8 | C | C |
postgres | omm | UTF8 | C | C |
template0 | omm | UTF8 | C | C | =c/omm +
| | | | | omm=CTc/omm
template1 | omm | UTF8 | C | C | =c/omm +
| | | | | omm=CTc/omm
(5 rows)
8、修改数据库的默认用户
omm=# CREATE USER user1 IDENTIFIED BY 'user1@ustb2020';
NOTICE: The encrypted password contains MD5 ciphertext, which is not secure.
CREATE ROLE
omm=# ALTER USER user1 SYSADMIN;
ALTER ROLE
--查看数据库musicdb1所属用户是omm
omm=# \l
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-----------+-------+----------+---------+-------+-------------------
musicdb1 | omm | UTF8 | C | C |
omm | omm | UTF8 | C | C |
postgres | omm | UTF8 | C | C |
template0 | omm | UTF8 | C | C | =c/omm +
| | | | | omm=CTc/omm
template1 | omm | UTF8 | C | C | =c/omm +
| | | | | omm=CTc/omm
(5 rows)
--修改musicdb1数据库所属用户为user1
omm=# alter database musicdb1 owner to user1;
ALTER DATABASE
omm=# \l
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
omm=# -----------+-------+----------+---------+-------+-------------------
musicdb1 | user1 | UTF8 | C | C |
omm | omm | UTF8 | C | C |
postgres | omm | UTF8 | C | C |
template0 | omm | UTF8 | C | C | =c/omm +
| | | | | omm=CTc/omm
template1 | omm | UTF8 | C | C | =c/omm +
| | | | | omm=CTc/omm
(5 rows)
9、删除数据库
omm=# DROP DATABASE musicdb1;
DROP DATABASE
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。




