本篇內(nèi)容主要講解“怎么使用PostgreSQL 12的settings選項(xiàng)”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“怎么使用PostgreSQL 12的settings選項(xiàng)”吧!
創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),環(huán)翠企業(yè)網(wǎng)站建設(shè),環(huán)翠品牌網(wǎng)站建設(shè),網(wǎng)站定制,環(huán)翠網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,環(huán)翠網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
PostgreSQL 12為explain命令提供了settings選項(xiàng),可查看影響執(zhí)行計(jì)劃的設(shè)置修改.
測(cè)試數(shù)據(jù):
testdb=# drop table if exists t_settings; NOTICE: table "t_settings" does not exist, skipping DROP TABLE testdb=# create table t_settings(id int,c1 varchar(20)); CREATE TABLE testdb=# testdb=# insert into t_settings select x,'c1'||x from generate_series(1,100000) as x; INSERT 0 100000 testdb=# create index idx_t_settings_id on t_settings(id); CREATE INDEX
PG 11
testdb=# explain (settings on) select * from t_settings where id = 1; ERROR: unrecognized EXPLAIN option "settings" LINE 1: explain (settings on) select * from t_settings where id = 1; ^
PG 11不支持該特性.
PG 12
PG 12新增了該特性
[local]:5432 pg12@testdb=# explain (settings on) select * from t_settings where id = 1; QUERY PLAN ----------------------------------------------------------------------------------- Bitmap Heap Scan on t_settings (cost=12.17..570.66 rows=500 width=62) Recheck Cond: (id = 1) -> Bitmap Index Scan on idx_t_settings_id (cost=0.00..12.04 rows=500 width=0) Index Cond: (id = 1) (4 rows) Time: 5.403 ms
修改參數(shù),查看執(zhí)行計(jì)劃
[local]:5432 pg12@testdb=# set enable_indexscan=off; SET Time: 0.555 ms [local]:5432 pg12@testdb=# explain (settings on) select * from t_settings where id = 1; QUERY PLAN -------------------------------------------------------------------------------- Bitmap Heap Scan on t_settings (cost=4.30..8.31 rows=1 width=11) Recheck Cond: (id = 1) -> Bitmap Index Scan on idx_t_settings_id (cost=0.00..4.30 rows=1 width=0) Index Cond: (id = 1) Settings: enable_indexscan = 'off' (5 rows) Time: 0.759 ms
注意執(zhí)行計(jì)劃中的” Settings: enable_indexscan = ‘off’ “,把影響執(zhí)行計(jì)劃的參數(shù)修改打印出來(lái),這是一個(gè)pretty cool特性,增強(qiáng)了易用性.
到此,相信大家對(duì)“怎么使用PostgreSQL 12的settings選項(xiàng)”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
分享文章:怎么使用PostgreSQL12的settings選項(xiàng)
當(dāng)前URL:http://chinadenli.net/article36/joeepg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開(kāi)發(fā)、服務(wù)器托管、網(wǎng)站改版、做網(wǎng)站、ChatGPT、網(wǎng)站導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)