analyze使用

2022/3/10 6:16:17

本文主要是介绍analyze使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

说明

analyze命令把每列信息写入到pg_statistic

 

测试

create table t1 (id int);

insert into t1(id) values(1);

analyze ​VERBOSE t1

1)执行第一次

rmgr: Heap len (rec/tot): 115/ 115, tx: 1101, lsn: 1/7F61E990, prev 1/7F61E958, desc: INSERT off 2, blkref #0: rel 1663/13287/2619 blk 1

rmgr: Heap len (rec/tot): 188/ 188, tx: 1101, lsn: 1/7F61EA48, prev 1/7F61EA08, desc: INPLACE off 4, blkref #0: rel 1663/13287/1259 blk 1

 

SELECT pg_relation_filepath(oid), relname FROM pg_class order by pg_relation_filepath(oid) asc;

base/13287/2619 | pg_statistic

base/13287/1259 | pg_class

2)执行第二三次

rmgr: Heap len (rec/tot): 76/ 76, tx: 1102, lsn: 1/7F61EBB8, prev 1/7F61EB80, desc: HOT_UPDATE off 2 xmax 1102 ; new off 3 xmax 0, blkref #0: rel 1663/13287/2619 blk 1 rmgr: Heap len (rec/tot): 76/ 76, tx: 1103, lsn: 1/7F61EC88, prev 1/7F61EC50, desc: HOT_UPDATE off 3 xmax 1103 ; new off 4 xmax 0, blkref #0: rel 1663/13287/2619 blk 1

写入的数据内容

select * from pg_statistic where starelid='65709';

插入两行数据后

#select oid from pg_class where relname='t1'; 65709



这篇关于analyze使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程