- 1、本文档共15页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
postgresql查看数据库,索引,表空间大小(PostgreSQL database, index, table space size)
postgresql查看数据库,索引,表空间大小(PostgreSQL database, index, table space size)
PostgreSQL view database, index, table space size, insert, into, temp, select, generate_series (110000000), generate_series (8000000190000000), 1;
Example explanation
1. Check the number of bytes required to store a specified value
David=# select pg_column_size (1);
Pg_column_size
----
Four
(1, row)
David=# select pg_column_size (david);
Pg_column_size
----
Six
(1, row)
2, check the data table field information
David=#\d test
Table public.test
Column Type Modifiers | |
-----------+-----------------------+-----------
ID integer | |
Name character varying (20) | |
Gender Boolean | |
Join_date date | |
Dept character (4) | |
Indexes:
Idx_join_date_test, BTREE (join_date)
Idx_test, BTREE (ID)
3. Check the number of records in the data table
David=# select count (1) from test;
Count
-
One million eight hundred and thirty-five thousand and eight
(1, row)
4, check the David database size
David=# select pg_database_size (david);
Pg_database_size
C
One hundred and ninety million five hundred and thirty-four thousand seven hundred and seventy-six
(1, row)
David=# select pg_size_pretty (pg_database_size (david));
Pg_size_pretty
----
182 MB
(1, row)
David=# looks at all database sizes
David=#, select, pg_database.datname, pg_database_size (pg_database.datname), AS, size, from, pg_database;
Datname size |
-----------+-------------
Template0 | 6513156
Postgres | 6657144
JBoss | 6521348
Bugs | 6521348
David | 190534776
BMCV3 | 28147135608
Mydb |Template1 | 6521348
(8, rows)
5, check the index size
David=# select pg_relation_size (idx_test);
Pg_relation_size
C
Forty-one million two hundred and thirty-eight thousand five hundred and twenty-eight
(1, row)
David=# select pg_size_pretty (pg_relation_size (idx_test));
Pg_size_pretty
----
39 MB
(1, row)
6. See all the index sizes in the specified table
David=# select pg_indexes_size (test);
Pg_indexes_size
style(1 *)
david: # select pg _ size _ pre
您可能关注的文档
- dvd解析(DVD analysis).doc
- dvr2004 修改说明(Dvr2004 modifications).doc
- dzh特色指标应用(The DZH characteristics of the target application).doc
- dxp元件封装(DXP component package).doc
- dyn变压器的特点(The characteristics of dyn transformer).doc
- e5筑底部商业用房消防设计常见问题探讨(E5 built on common problems in the design of fire at the bottom of commercial housing).doc
- ebs多节点克隆(EBS multi node cloning).doc
- elisa测定错误结果的原因分析(Analysis of the causes of erroneous results for the determination of ELISA).doc
- emule优化(电驴优化).doc
- en清明节由来(EN Tomb-sweeping Day origin).doc
文档评论(0)