- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在具有相同数据库的类似 Amazon RDS PostgreSQL 服务器版本 9.6.11 上,我为一个 SQL 查询获得了不同的执行计划。
我尝试重新创建索引并运行 ANALYZE
和 VACUUM
。没有任何帮助。
我的查询:
SELECT "users_employee"."id",
(
SELECT U0."created"
FROM "surveys_surveyrequest" U0
WHERE (U0."confirmed" IS NULL
AND U0."skipped" IS NULL
AND U0."from_member_id" = ("users_employee"."id"))
ORDER BY U0."created" ASC
LIMIT 1) AS "earliest_request_date"
FROM "users_employee"
ORDER BY "users_employee"."id" ASC;
问题表信息:
create table surveys_surveyrequest
(
id integer default nextval('public.surveys_surveyrequest_id_seq'::regclass) not null
constraint surveys_surveyrequest_pkey
primary key,
created timestamp with time zone not null,
skipped timestamp with time zone,
from_member_id integer
constraint surveys_surveyreques_from_member_id_81f0e82e_fk_users_emp
references users_employee
deferrable initially deferred,
confirmed timestamp with time zone
);
create index surveys_sur_confirm_48bfa6_idx
on surveys_surveyrequest (confirmed);
create index surveys_sur_created_099976_idx
on surveys_surveyrequest (created);
create index surveys_surveyrequest_70b76ad7
on surveys_surveyrequest (from_member_id);
计划:答:
QUERY PLAN
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Index Only Scan using auth_user_pkey on users_employee (cost=0.28..991903.69 rows=1478 width=12) (actual time=139.054..195486.465 rows=1478 loops=1)
Heap Fetches: 51
Buffers: shared hit=296637323
SubPlan 1
-> Limit (cost=0.42..671.07 rows=1 width=8) (actual time=132.258..132.259 rows=1 loops=1478)
Buffers: shared hit=296637288
-> Index Scan using surveys_sur_created_099976_idx on surveys_surveyrequest u0 (cost=0.42..24143.63 rows=36 width=8) (actual time=132.256..132.256 rows=1 loops=1478)
Filter: ((confirmed IS NULL) AND (skipped IS NULL) AND (from_member_id = users_employee.id))
Rows Removed by Filter: 405780
Buffers: shared hit=296637288
Planning time: 0.188 ms
Execution time: 195487.356 ms
(12 rows)
乙:
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Index Only Scan using auth_user_pkey on users_employee (cost=0.28..886476.74 rows=1578 width=12) (actual time=0.977..1043.414 rows=1578 loops=1)
Heap Fetches: 0
Buffers: shared hit=98270 read=8
SubPlan 1
-> Limit (cost=561.74..561.74 rows=1 width=8) (actual time=0.658..0.659 rows=1 loops=1578)
Buffers: shared hit=98266 read=5
-> Sort (cost=561.74..561.79 rows=22 width=8) (actual time=0.658..0.658 rows=1 loops=1578)
Sort Key: u0.created
Sort Method: quicksort Memory: 25kB
Buffers: shared hit=98266 read=5
-> Bitmap Heap Scan on surveys_surveyrequest u0 (cost=474.19..561.63 rows=22 width=8) (actual time=0.646..0.652 rows=13 loops=1578)
Recheck Cond: ((from_member_id = users_employee.id) AND (confirmed IS NULL))
Filter: (skipped IS NULL)
Rows Removed by Filter: 3
Heap Blocks: exact=9707
Buffers: shared hit=98266 read=5
-> BitmapAnd (cost=474.19..474.19 rows=23 width=0) (actual time=0.641..0.641 rows=0 loops=1578)
Buffers: shared hit=88562 read=2
-> Bitmap Index Scan on surveys_surveyrequest_70b76ad7 (cost=0.00..11.29 rows=382 width=0) (actual time=0.023..0.023 rows=258 loops=1578)
Index Cond: (from_member_id = users_employee.id)
Buffers: shared hit=5847 read=2
-> Bitmap Index Scan on surveys_sur_confirm_48bfa6_idx (cost=0.00..462.64 rows=24829 width=0) (actual time=0.826..0.826 rows=24756 loops=1165)
Index Cond: (confirmed IS NULL)
Buffers: shared hit=82715
Planning time: 0.234 ms
Execution time: 1043.680 ms
(26 rows)
Time: 1044,547 ms (00:01,045)
我希望生成相同的查询计划,但这并没有发生。可能是什么原因?Plan B如何实现执行力?
最佳答案
请检查两台服务器上的配置是否相同,所有索引是否存在且未标记为“无效”。
假设是这种情况,不同之处可能在于数据在两个数据库中的分布不同。请ANALYZE surveys_surveyrequest
并在两个数据库上运行以下命令:
SELECT correlation
FROM pg_stats
WHERE tablename = 'surveys_surveyrequest'
AND attname = 'created';
我的猜测是该值在 A 上接近 1 或 -1,在 B 上接近 0。
That would explain为什么 PostgreSQL 更喜欢在 A 上进行索引扫描。计划 A 的问题是 PostgreSQL 必须扫描比预期更多的索引行,可能是因为与条件匹配的行都在索引中很远。
我想说你应该简单地禁用 surveys_sur_created_099976_idx
上的索引扫描,与
DROP INDEX surveys_sur_created_099976_idx;
或者(如果您出于其他目的需要索引)使用
ORDER BY U0."created" + INTERVAL '0 seconds'
关于sql - 类似服务器上的 PostgreSQL 不同查询计划,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55419854/
SQL、PL-SQL 和 T-SQL 之间有什么区别? 谁能解释一下这三者之间的区别,并提供每一个的相关使用场景? 最佳答案 SQL 是一种对集合进行操作的查询语言。 它或多或少是标准化的,几乎所有关
这个问题已经有答案了: What is the difference between SQL, PL-SQL and T-SQL? (6 个回答) 已关闭 9 年前。 我对 SQL 的了解足以完成我的
我在数据库中有一个 USER 表。该表有一个 RegistrationDate 列,该列有一个默认约束为 GETDATE()。 使用 LINQ 时,我没有为 RegistrationDate 列提供任
我有一个可能属于以下类型的字符串 string expected result 15-th-rp 15 15/12-rp 12 15-12-th
很难说出这里问的是什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或言辞激烈,无法以目前的形式合理回答。如需帮助澄清此问题以便可以重新打开,visit the help center . 9年前关闭
我有一个存储过程(称为 sprocGetArticles),它从文章表中返回文章列表。这个存储过程没有任何参数。 用户可以对每篇文章发表评论,我将这些评论存储在由文章 ID 链接的评论表中。 有什么方
我目前正在做一个 *cough*Oracle*cough* 数据库主题。讲师介绍embedded SQL作为让其他语言(例如 C、C++)与(Oracle)数据库交互的方式。 我自己做了一些数据库工作
SQL Server 中 SQL 语句的最大长度是多少?这个长度是否取决于 SQL Server 的版本? 例如,在 DECLARE @SQLStatement NVARCHAR(MAX) = N'S
这个问题已经有答案了: Simple way to transpose columns and rows in SQL? (9 个回答) 已关闭 8 年前。 CallType
预先感谢您对此提供的任何帮助。 假设我有一个查询,可以比较跨年的数据,从某个任意年份开始,永无止境(进入 future ),每年同一时期直到最后一个完整的月份(其特点是一月数据永远不会显示至 2 月
我在数据库中有一个 USER 表。该表有一个 RegistrationDate 列,该列的默认约束为 GETDATE()。 使用 LINQ 时,我没有为 RegistrationDate 列提供任何数
下面是我试图用来检查存储过程是否不存在然后创建过程的 sql。它会抛出一个错误:Incorrect syntax near the keyword 'PROCEDURE' IF NOT EXISTS
我有一个同事声称动态 SQL 在许多情况下比静态 SQL 执行得更快,所以我经常看到 DSQL 到处都是。除了明显的缺点,比如在运行之前无法检测到错误并且更难阅读,这是否准确?当我问他为什么一直使用
来自 lobodava 的动态 SQL 查询是: declare @sql nvarchar(4000) = N';with cteColumnts (ORDINAL_POSITION, CO
使用 SQL Server 中的存储过程执行动态 SQL 命令的现实优点和缺点是什么 EXEC (@SQL) 对比 EXEC SP_EXECUTESQL @SQL ? 最佳答案 sp_executes
我有这个有效的 SQL 查询: select sum(dbos.Points) as Points, dboseasons.Year from dbo.StatLines dbos i
我正在调试一些构建成功运行的 SQL 命令的代码。 然而,在查询结束时,查询结果似乎被写入了一个文本文件。 完整的查询如下 echo SELECT DATE,DATETABLE,DATE,APPDAT
我有一些创建表的 .sql 文件(MS SQL 数据库): 表_1.sql: IF OBJECT_ID (N'my_schema.table1', N'U') IS NOT NULL DROP TAB
我写了下面的 SQL 存储过程,它一直给我错误@pid = SELECT MAX(... 整个过程是: Alter PROCEDURE insert_partyco @pname varchar(20
我在 SQL Server 2005 中有包含两列 Fruit 和 Color 的表,如下所示 Fruit Colour Apple Red Orange
我是一名优秀的程序员,十分优秀!