怎么在postgresql中查询表的大小 pg数据库查看表大小

主机教程 建站分享 2年前 (2022-11-01) 447次浏览

文章摘要:怎么在postgresql中查询表的大小 pg数据库查看表大小

在postgresql中查询表大小的方法:1.启动postgresql服务;2.登录postgresql数据库 […]

在postgresql中查询表大小的方法:1.启动postgresql服务;2.登录postgresql数据库;3.使用数据库;4.使用pg_relation_size函数查询;

具体步骤如下:

1.首先,在命令行中启动postgresql服务;

net start postgresql

2.postgresql服务启动后,在命令行中登录到postgresql数据库;

psql -h -U

3.登录到postgresql数据库后,在postgresql选择一个数据库并使用;

c text

4.最后,进入到数据库后,在数据库中使用pg_relation_size函数即可查询表的大小;

select pg_size_pretty(pg_relation_size('表名'));


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:怎么在postgresql中查询表的大小 pg数据库查看表大小
文章链接:http://www.7966.org/post/11357.html
转载请注明出处

喜欢 (0)