PostgreSQL 常用命令
列出所有的数据库
postgres=# \l
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-----------+----------+----------+-------------+-------------+-----------------------
postgres | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | =Tc/postgres +
| | | | | postgres=CTc/postgres
template0 | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres +
| | | | | postgres=CTc/postgres
template1 | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres +
| | | | | postgres=CTc/postgres
(3 rows)
postgres=# \list
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-----------+----------+----------+-------------+-------------+-----------------------
postgres | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | =Tc/postgres +
| | | | | postgres=CTc/postgres
template0 | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres +
| | | | | postgres=CTc/postgres
template1 | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres +
| | | | | postgres=CTc/postgres
(3 rows)
# 列出所有的数据库的大小
postgres=# \l+
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges | Size | Tablespace | Description
-----------+----------+----------+-------------+-------------+-----------------------+---------+------------+--------------------------------------------
postgres | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | =Tc/postgres +| 8593 kB | pg_default | default administrative connection database
| | | | | postgres=CTc/postgres | | |
template0 | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres +| 8385 kB | pg_default | unmodifiable empty database
| | | | | postgres=CTc/postgres | | |
template1 | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres +| 8385 kB | pg_default | default template for new databases
| | | | | postgres=CTc/postgres | | |
testdb | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | | 8537 kB | pg_default |
(4 rows)
复制
切换数据库
postgres=# \c testdb;
You are now connected to database "testdb" as user "postgres".
testdb=#
复制
查询所有数据库大小
postgres=# select datname, pg_size_pretty (pg_database_size(datname)) AS size from pg_database;
datname | size
-----------+---------
postgres | 8593 kB
template1 | 8385 kB
template0 | 8385 kB
testdb | 8537 kB
(4 rows)
复制
查看PostgreSQL数据库连接及数量
postgres=# select * from pg_stat_activity;
datid | datname | pid | leader_pid | usesysid | usename | application_name | client_addr | client_hostname | client_port | backend_start | xact_start | query
_start | state_change | wait_event_type | wait_event | state | backend_xid | backend_xmin | query_id | query | backend_type
-------+----------+-------+------------+----------+----------+------------------+-------------+-----------------+-------------+-------------------------------+-------------------------------+---------------
----------------+-------------------------------+-----------------+---------------------+--------+-------------+--------------+----------+---------------------------------+------------------------------
| | 1665 | | 10 | postgres | | | | | 2023-01-02 10:39:32.136348+08 | |
| | Activity | LogicalLauncherMain | | | | | | logical replication launcher
| | 1663 | | | | | | | | 2023-01-02 10:39:32.137592+08 | |
| | Activity | AutoVacuumMain | | | | | | autovacuum launcher
13892 | postgres | 10563 | | 10 | postgres | psql | | | -1 | 2023-01-02 19:58:21.927915+08 | 2023-01-02 20:08:52.494496+08 | 2023-01-02 20:
08:52.494496+08 | 2023-01-02 20:08:52.494497+08 | | | active | | 824 | | select * from pg_stat_activity; | client backend
| | 1661 | | | | | | | | 2023-01-02 10:39:32.136859+08 | |
| | Activity | BgWriterHibernate | | | | | | background writer
| | 1660 | | | | | | | | 2023-01-02 10:39:32.139787+08 | |
| | Activity | CheckpointerMain | | | | | | checkpointer
| | 1662 | | | | | | | | 2023-01-02 10:39:32.137144+08 | |
| | Activity | WalWriterMain | | | | | | walwriter
(6 rows)
复制
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。
文章被以下合辑收录
评论
相关阅读
【专家有话说第五期】在不同年龄段,DBA应该怎样规划自己的职业发展?
墨天轮编辑部
1322次阅读
2025-03-13 11:40:53
【专家观点】罗敏:从理论到真实SQL,感受DeepSeek如何做性能优化
墨天轮编辑部
1308次阅读
2025-03-06 16:45:38
2025年2月国产数据库大事记
墨天轮编辑部
1023次阅读
2025-03-05 12:27:34
2025年2月国产数据库中标情况一览:GoldenDB 3500+万!达梦近千万!
通讯员
904次阅读
2025-03-06 11:40:20
2月“墨力原创作者计划”获奖名单公布
墨天轮编辑部
465次阅读
2025-03-13 14:38:19
AI的优化能力,取决于你问问题的能力!
潇湘秦
439次阅读
2025-03-11 11:18:22
王炸!OGG 23ai 终于支持从PostgreSQL备库抽取数据了
曹海峰
409次阅读
2025-03-09 12:54:06
玩一玩系列——玩玩login_hook(一款即将停止维护的PostgreSQL登录插件)
小满未满、
376次阅读
2025-03-08 18:19:28
明明想执行的SQL是DELETE、UPDATE,但为什么看到的是SELECT(FDW的实现原理解析)
小满未满、
356次阅读
2025-03-19 23:11:26
优炫数据库成功应用于国家电投集团青海海南州新能源电厂!
优炫软件
345次阅读
2025-03-21 10:34:08