打卡第三天,学习体会
今天学习数据库的新增、删除、修改,对创建数据库相对来说操作起来挺简便的,而且创建速度很快,删除数据库时不可以删除当前连接的数据库;
在进行查看数据库信息只要使用"\l" 命令,数据库切换"\c" ,退出数据库"\q" 等等,还有很多简便的操作命令,不得不说这方面openGauss数据库做的挺好的;
今天练习里面有一个调整数据库连接数限制的语句
ALTER DATABASE music CONNECTION LIMIT= 10;默认是-1,也就是没有限制,查看调整后的信息可通过pg_databases查询得到
SELECT DATNAME,DATCONNLIMIT FROM PG_DATABASE;查了下资料,总共有三个地方可设置连接数限制
第一层级别:整个服务器连接数的限制,这主要由max_connections来限制。
openGauss=# show max_connections;
max_connections
-----------------
5000
(1 row)
第二层级:可为每个数据库指定最大连接数量限制;
openGauss=# ALTER DATABASE music CONNECTION LIMIT= 10;第三层级:限制指定用户的最大连接数;
ALTER USER XXX WITH CONNECTION LIMIT 10;
select rolname,rolconnlimit from pg_roles;补充下这一练的一些操作命令:
- \l或\l+:列出数据库信息
- \c 数据库名: 切换数据库
- \q:退出gsql
坚持学习,希望进一步敲开openGauss的大门。
课后作业
1.分别创建名为tpcc1和tpcc2的数据库
omm=# create database tpcc1;
CREATE DATABASE
omm=# create database tpcc2;
CREATE DATABASE2.将tpcc1数据库重命名为tpcc10
omm=# alter database tpcc1 rename to tpcc10;
ALTER DATABASE3.分别使用\l和\l+两个元命令查看数据库信息
omm=# \l
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-----------+-------+----------+-------------+-------------+-------------------
omm | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 |
postgres | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 |
template0 | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/omm +
| | | | | omm=CTc/omm
template1 | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/omm +
| | | | | omm=CTc/omm
tpcc10 | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 |
omm=# tpcc2 | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 |
(6 rows)
omm=# \l+
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges | Size | Tablespace | Descriptio
n
-----------+-------+----------+-------------+-------------+-------------------+-------+------------+--------------------------
------------------
omm | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 | | 10 MB | pg_default |
postgres | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 | | 10 MB | pg_default | default administrative co
nnection database
template0 | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/omm +| 10 MB | pg_default | default template for new
databases
| | | | | omm=CTc/omm | | |
template1 | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/omm +| 10 MB | pg_default | unmodifiable empty databa
se
| | | | | omm=CTc/omm | | |
tpcc10 | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 | | 10 MB | pg_default |
tpcc2 | omm | UTF8 | en_US.UTF-8 | en_US.UTF-8 | | 10 MB | pg_default |
(6 rows)
omm=# 4.在数据库tpcc2中创建customer表,字段自定义
omm-# \c tpcc2
Non-SSL connection (SSL connection is recommended when requiring high-security)
You are now connected to database "tpcc2" as user "omm".
tpcc2=# create table customer(id int,a varchar(10));
CREATE TABLE
tpcc2=# 5.删除新创建的数据库
tpcc2=# \c omm
Non-SSL connection (SSL connection is recommended when requiring high-security)
You are now connected to database "omm" as user "omm".
omm=# drop database tpcc2;
DROP DATABASE
omm=# drop database tpcc10;
DROP DATABASE6.退出gsql程序
omm=# \q最后修改时间:2021-12-09 21:17:05
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。




