473,396 Members | 1,895 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

curius behavior of planner after analyze, (Pg7.5)

Hello

I found following select where plan before vacuum analyse is better than
after vacuum. What I have to do? I can change only set statistic for any
column. How I can find which columns I have to alter?

Regards
Pavel Stehule

intra_test=# explain analyze select t.value, t.sp_op_id,
s.obchodni_pripad_id, o.popis, p.popis, op.jmeno, q.comment, op.partner_id
from techbox t, sp_o
p_produkt s, techreq q, obchodni_pripad o, produkt p, obchodni_partner op
where lcase(value) like '%zemek%' and t.sp_op_id=s.sp_op_id and
t.techr_id=q.t
echr_id and s.obchodni_pripad_id=o.obchodni_pripad_id and
p.produkt_id=s.produkt_id and o.partner_id=op.partner_id;

QUERY PLAN
------------------------------------------------------------------------------------------------------------------------------------------------------
Nested Loop (cost=512.53..551.66 rows=3 width=1108) (actual
time=72.236..72.740 rows=2 loops=1)
-> Nested Loop (cost=512.53..533.75 rows=3 width=963) (actual
time=72.176..72.637 rows=2 loops=1)
-> Hash Join (cost=512.53..515.87 rows=3 width=814) (actual
time=72.097..72.519 rows=2 loops=1)
Hash Cond: ("outer".produkt_id = "inner".produkt_id)
-> Seq Scan on produkt p (cost=0.00..2.66 rows=132
width=520) (actual time=0.010..0.259 rows=132 loops=1)
-> Hash (cost=512.52..512.52 rows=4 width=302) (actual
time=71.998..71.998 rows=0 loops=1)
-> Nested Loop (cost=1.14..512.52 rows=4 width=302)
(actual time=0.807..71.989 rows=2 loops=1)
-> Hash Join (cost=1.14..488.50 rows=4
width=294) (actual time=0.724..71.853 rows=2 loops=1)
Hash Cond: ("outer".techr_id =
"inner".techr_id)
-> Seq Scan on techbox t
(cost=0.00..487.16 rows=35 width=153) (actual time=0.535..71.649 rows=2
loops=1)
Filter: (lower((value)::text) ~~
'%zemek%'::text)
-> Hash (cost=1.09..1.09 rows=19
width=149) (actual time=0.162..0.162 rows=0 loops=1)
-> Seq Scan on techreq q
(cost=0.00..1.09 rows=19 width=149) (actual time=0.039..0.118 rows=19
loops=1)
-> Index Scan using cccc on sp_op_produkt s
(cost=0.00..6.00 rows=1 width=12) (actual time=0.043..0.049 rows=1
loops=2)
Index Cond: ("outer".sp_op_id =
s.sp_op_id)
-> Index Scan using obchodni_pripad_pkey on obchodni_pripad o
(cost=0.00..5.95 rows=1 width=153) (actual time=0.029..0.033 rows=1
loops=2)
Index Cond: ("outer".obchodni_pripad_id =
o.obchodni_pripad_id)
-> Index Scan using obchodni_partner_pkey on obchodni_partner op
(cost=0.00..5.96 rows=1 width=149) (actual time=0.022..0.026 rows=1
loops=2)
Index Cond: ("outer".partner_id = op.partner_id)
Total runtime: 73.358 ms
(20 řádek)

intra_test=# VACUUM ANALYZE;
VACUUM
intra_test=# explain analyze select t.value, t.sp_op_id,
s.obchodni_pripad_id, o.popis, p.popis, op.jmeno, q.comment, op.partner_id
from techbox t, sp_o
p_produkt s, techreq q, obchodni_pripad o, produkt p, obchodni_partner op
where lcase(value) like '%zemek%' and t.sp_op_id=s.sp_op_id and
t.techr_id=q.t
echr_id and s.obchodni_pripad_id=o.obchodni_pripad_id and
p.produkt_id=s.produkt_id and o.partner_id=op.partner_id;

QUERY PLAN

--------------------------------------------------------------------------------------------------------------------------------------------------------
---------------
Hash Join (cost=683.73..750.25 rows=35 width=114) (actual
time=89.755..95.817 rows=2 loops=1)
Hash Cond: ("outer".techr_id = "inner".techr_id)
-> Hash Join (cost=682.59..748.75 rows=35 width=100) (actual
time=88.764..94.811 rows=2 loops=1)
Hash Cond: ("outer".partner_id = "inner".partner_id)
-> Seq Scan on obchodni_partner op (cost=0.00..53.99 rows=2399
width=28) (actual time=0.066..6.029 rows=2399 loops=1)
-> Hash (cost=682.50..682.50 rows=35 width=76) (actual
time=85.297..85.297 rows=0 loops=1)
-> Hash Join (cost=621.19..682.50 rows=35 width=76)
(actual time=77.796..85.258 rows=2 loops=1)
Hash Cond: ("outer".obchodni_pripad_id =
"inner".obchodni_pripad_id)
-> Seq Scan on obchodni_pripad o (cost=0.00..48.57
rows=2514 width=30) (actual time=0.008..4.948 rows=2514 loops=1)
-> Hash (cost=621.10..621.10 rows=35 width=50)
(actual time=76.866..76.866 rows=0 loops=1)
-> Hash Join (cost=616.61..621.10 rows=35
width=50) (actual time=76.429..76.853 rows=2 loops=1)
Hash Cond: ("outer".produkt_id =
"inner".produkt_id)
-> Seq Scan on produkt p
(cost=0.00..2.66 rows=132 width=29) (actual time=0.012..0.260 rows=132
loops=1)
-> Hash (cost=616.53..616.53 rows=35
width=29) (actual time=76.287..76.287 rows=0 loops=1)
-> Nested Loop (cost=0.00..616.53
rows=35 width=29) (actual time=1.055..76.274 rows=2 loops=1)
-> Seq Scan on techbox t
(cost=0.00..487.16 rows=35 width=21) (actual time=0.621..75.650 rows=2
loops=1)
Filter:
(lower((value)::text) ~~ '%zemek%'::text)
-> Index Scan using cccc on
sp_op_produkt s (cost=0.00..3.69 rows=1 width=12) (actual
time=0.277..0.284 r
ows=1 loops=2)
Index Cond:
("outer".sp_op_id = s.sp_op_id)
-> Hash (cost=1.09..1.09 rows=19 width=22) (actual time=0.195..0.195
rows=0 loops=1)
-> Seq Scan on techreq q (cost=0.00..1.09 rows=19 width=22)
(actual time=0.081..0.148 rows=19 loops=1)
Total runtime: 96.596 ms
(22 řádek)

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Nov 23 '05 #1
0 941

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Michele | last post by:
Hi all, There's a web-based project I'm working on, which my boss insists should be implemented as a java web service: I know Java, but I'm a complete newcomer to web services, so I would badly...
6
by: Rob Fielding | last post by:
Hi, We're currently experiencing a problem where SQL statements are failing when entring a '' for not not-null integer columns: ERROR: pg_atoi: zero-length string This was discovered just...
1
by: Alex Satrapa | last post by:
I have a table from which I'm trying to extract certain information. For historical reasons, we archive every action on a particular thing ('thing' is identified, funnily enough, by 'id'). So the...
2
by: Chris Travers | last post by:
Hi all; I suspect I know what the answer here is, but I thought I would ask anyway. How transparent are SQL language functions from the planner's perspective? For example if I create a table:...
59
by: Jeff Bowden | last post by:
For ease of configuration and other reasons, I would like for my single-user GUI app to be able to use postgresql in-process as a library accessing a database created in the users home directory. ...
0
by: Pavel Stehule | last post by:
Hello I found following select where plan before vacuum analyse is better than after vacuum. What I have to do? I can change only set statistic for any column. How I can find which columns I...
2
by: Ed L. | last post by:
The planner is choosing a sequential scan for my query. I am trying to understand why since it is clearly not the fastest choice, and what the proper tuning dial is to adjust here. Here's the...
5
by: Timothy Perrigo | last post by:
This bug? feature? caused a bit of havoc for us yesterday...A reproducible example follows. Essentially, if you have a table with a primary key called "id", and you create a temp table (via a...
1
by: Greg Stark | last post by:
I think this is just a bad case of "nested loops are costed wrong". But it's a really really bad case. Like, even without any overlap in records looked up in the nested loop I cannot imagine it...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.