Tagged Questions
The explain-plan tag has no wiki summary.
35
votes
12answers
3k views
Faster way to delete matching rows?
I'm a relative novice when it comes to databases. We are using MySQL and I'm currently trying to speed up a SQL statement that seems to take a while to run. I looked around on SO for a similar ...
29
votes
2answers
3k views
How do I use EXPLAIN to *predict* performance of a MySQL query?
I'm helping maintain a program that's essentially a friendly read-only front-end for a big and complicated MySQL database -- the program builds ad-hoc SELECT queries from users' input, sends the ...
26
votes
11answers
10k views
How do you interpret a query's explain plan?
When attempting to understand how a SQL statement is executing, it is sometimes recommended to look at the explain plan. What is the process one should go through in interpreting (making sense) of an ...
9
votes
2answers
2k views
How can I analyse a Sqlite query execution?
I have a Sqlite database which I want to check the indexes are correct. MS SQL Analyser is great at breaking down the query execution and utilised indexes.
Is there a similar tool for Sqlite?
9
votes
1answer
6k views
What is the difference between Seq Scan and Bitmap heap scan in postgres?
In output of explain command I found two terms 'Seq Scan' and 'Bitmap heap Scan'. Can somebody tell me what is the difference between these two types of scan? (I am using PostgreSql)
7
votes
14answers
601 views
MySQL Query performance - huge difference in time
I have a query that is returning in vastly different amounts of time between 2 datasets. For one set (database A) it returns in a few seconds, for the other (database B)....well I haven't waited long ...
7
votes
4answers
3k views
Meaning of “Select tables optimized away” in MySQL Explain plan
What is the meaning of Select tables optimized away in MySQL Explain plan?
explain select count(comment_count) from wp_posts;
...
7
votes
4answers
17k views
Understanding the results of Execute Explain Plan in Oracle SQL Developer
I'm new to Oracle and to SQL Developer. I'm trying to optimize a query but don't quite understand some of the information returned from Explain Plan. Can anyone tell me the significance of the OPTIONS ...
6
votes
2answers
867 views
SQL explain plan: what is Materialize?
I asked PostgreSQL to explain my query. Part of the explanation was:
table_name --> Materialize
What does materialize do? I'm joining two tables, not views or anything like that.
6
votes
4answers
331 views
Tool for comparison of SQL Server query plans?
Does anyone know of a tool that can be used to compare (relatively complex) query plans? I'm not looking for a guide to query plans, but just a tool that enables me to quickly see e.g. the different ...
5
votes
1answer
203 views
Nested loops in MySQL
In this O'Reilly presentation, there is a paragraph introducing some key concepts for understanding MySQL's EXPLAIN:
What is a JOIN?
Everything is a JOIN, because MySQL always uses ...
5
votes
3answers
133 views
mysql multi column index not working (as expected)?
I have a table like this
CREATE TABLE IF NOT EXISTS `tbl_folder` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`owner_userid` int(11) NOT NULL,
`name` varchar(63) NOT NULL,
`description` text NOT ...
5
votes
3answers
314 views
MySQL slow query with join even though EXPLAIN shows good plan
I have the following scenario: In a MySQL database, I have 2 MyISAM tables, one with 4.2 million rows, and another with 320 million rows. The following is the schema for the tables:
Table1 (4.2M ...
5
votes
3answers
256 views
Is there a way to force MySQL execution order?
I know I can change the way MySQL executes a query by using the FORCE INDEX (abc) keyword. But is there a way to change the execution order?
My query looks like this:
SELECT c.*
FROM table1 a
INNER ...
4
votes
1answer
345 views
Oracle & PL/SQL Developer - Access predicates and Filter predicates no longer shown
I'm using Allround Automation PL/SQL Developer with Oracle 10g, and today I've noticed that explain plans no longer display anything for Access Predicates or Filter Predicates. The only thing that's ...
4
votes
2answers
314 views
MySQL explain filtered column jumping 4,100 with index
My Query:
EXPLAIN EXTENDED SELECT `artwork`.`id` , `artwork`.`added`
FROM `artwork`
ORDER BY `artwork`.`added` DESC
LIMIT 0 , 6
When I added an index on "added" to avoid using filesort and ...
4
votes
2answers
936 views
SQL Developer explain plan broken
Trying to generate an explain plan in SQL Developer, the program puts up a message box with title "failed to query plan_table" complaining "invalid column name". The plan is not generated or ...
4
votes
1answer
531 views
Is mysql using my index or not, and can the performance of geokit be improved?
I'm using geokit (acts_as_mappable) in a rails application, and the performance of radial or bounds searches degrades considerably when there is a large number of models (I've tried with 1-2million ...
3
votes
3answers
1k views
Oracle explain plan estimates incorrect cardinality for an index range scan
I have an Oracle 10.2.0.3 database, and a query like this:
select count(a.id)
from LARGE_PARTITIONED_TABLE a
join SMALL_NONPARTITIONED_TABLE b on a.key1 = b.key1 and a.key2 = b.key2
where b.id = ...
3
votes
1answer
82 views
What is the significance of the order of statements in mysql explain output?
This is mysql explain plan for one of the query I am looking into.
+----+-------------+--------+-------+---------------+---------+---------+------+------+-------+
| id | select_type | table | type ...
3
votes
3answers
116 views
How do I explain a query with parameters in MySQL
I have a query
SELECT foo FROM bar WHERE some_column = ?
Can I get a explain plan from MySQL without filling in a value for the parameter?
3
votes
1answer
120 views
EXPLAIN and COUNT returning two different values
i am doing:
explain select * from calibration;
it says 52133456345632 rows
when i do:
select count(*) from calibration;
i am getting 52134563456961
can someone explain whats going on here?
3
votes
4answers
2k views
Oracle EXECUTE IMMEDIATE changes explain plan of query
I have a stored procedure that I am calling using EXECUTE IMMEDIATE. The issue that I am facing is that the explain plan is different when I call the procedure directly vs when I use EXECUTE ...
3
votes
2answers
961 views
How can I “think better” when reading a PostgreSQL query plan? (Example attached)
I spent over an hour today puzzling myself over a query plan that I couldn't understand. The query was an UDPATE and it just wouldn't run AT ALL. Totally deadlocked: pg_locks showed it wasn't waiting ...
3
votes
2answers
405 views
MySQL explain anomaly
Consider the following query:
select FEE_NUMBER
from CARRIER_FEE CF
left outer join CONTYPE_FEE_LIST cfl on CF.CAR_FEE_ID=cfl.CAR_FEE_ID and cfl.CONT_TYPE_ID=3
where CF.SEQ_NO = (
select ...
2
votes
4answers
123 views
How can I avoid PostgreSQL sometimes choosing a bad query plan for one of two nearly identical queries?
I have a strange problem with PostgreSQL performance for a query, using PostgreSQL 8.4.9. This query is selecting a set of points within a 3D volume, using a LEFT OUTER JOIN to add a related ID ...
2
votes
1answer
53 views
Help improving a query. Trying to use EXPLAIN
I have a query that really isn't that complicated. Its taking close to 250ms to run, which is pretty slow. I've analyzed the query using EXPLAIN and noticed a seq scan. I have the proper indexes in ...
2
votes
2answers
64 views
Do Virtualized systems effect Explain Plans?
I'm having strange and different results for explain plans on Postgresql. Postgresql server is installed on a VMWare machine and when executing several explain plans for a given SQL query, different ...
2
votes
1answer
151 views
Query plan For Sqlite
Does Sqlite create a "query plan" for the complex queries? (I know mysql creates one and chooses the best of different available combination to execute the query). Is there any way i can get ...
2
votes
2answers
152 views
'splain a postgresql EXPLAIN to me
Got this here query:
EXPLAIN
SELECT persons.id AS id, ppm.first
FROM myschema.persons
INNER JOIN myotherschema.ppm ON persons.key = ppm.pid
WHERE persons.id = 279759;
The column ppm.pid is a ...
2
votes
1answer
90 views
Why do nested views have a different explain plan than a single merged view?
I have a view V2 that selects from another view V1 and adds a couple predicate filters.
V2 IS SELECT * FROM V1
WHERE ACTIVE='Y'
AND TYPE = '1';
When I do a join between V2 and a table FOO on the ...
2
votes
5answers
149 views
Mysql Query performance -
I have the following Mysql query
explain SELECT count(*) as assetCount
FROM MdhRawAsset m
where sysCreationDate > date_add(now(), INTERVAL -1 DAY)
AND ...
2
votes
1answer
219 views
Optimize a query that is using multiple left joins on the same tables
I've come across a query that is taking "too long". The query has 50+ left joins between 10 or so tables. To give a brief overview of the database model, the tables joined are tables that store data ...
2
votes
2answers
152 views
Postgresql compare 2 querys for optimization
I just created a couple of queries that bring the same data but in a different. the first one uses a sub query and the second one uses a self join strategy. checking the documentation, i found the ...
2
votes
1answer
225 views
What to prefer in query optimization: Using filesort or more rows examined
I'm trying to optimize this mysql query using EXPLAIN. Can somebody please help me out over here?
EXPLAIN SELECT * FROM keyword
WHERE keyword LIKE "panasonic%"
AND keyword != "panasonic"
AND price ...
2
votes
1answer
203 views
Explain to obtain the query time?
I trying to use command Explain to obtain the query time of my mySql database, however it return always 0.00sec, am i misunderstand the Explain command usage in mySql?
Below is my command:
mysql> ...
2
votes
4answers
730 views
Should creating an index instantly update Oracle's query plan?
If you have an inefficient query, and you add an index to help out performance, should the query "instantly" start using the index?
Or do you need to clear out the Oracle "cache" (v$sql I believe) ...
2
votes
1answer
175 views
Explain Vs Desc anomalies in mysql
What are the differences between EXPLAIN and DESC commands in MySQL ?
2
votes
2answers
895 views
MySQL, delete and index hint
I have to delete about 10K rows from a table that has more than 100 million rows based on some criteria. When I execute the query, it takes about 5 minutes. I ran an explain plan (the delete query ...
2
votes
3answers
2k views
Oracle SQL-Developer: Export “Explain Plan” Images?
I'm trying to export a copy of the Explain Plan from Oracle SQL Developer 2.1.0.63
All I get out is a html file named what I specify, then a newly created folder in the same directory called ...
2
votes
1answer
432 views
How can I fetch EXPLAIN PLAN FOR an Oracle SQL query from PHP?
I'm using Oracle 10g Express on Windows XP, and on a Macbook OS X 10.5.8 running PHP 5.3.1 with PDO and Oracle Instant Client 10.2.0.4.0_4, I run the following script:
<?php
$pdo = new ...
2
votes
2answers
366 views
Please Help Me With Mysql Slow Query Analysis
I have this mysql query that I am trying to analyze. It is very slow, the visitor table here is about 50K entries, this query never returns. When I tried an explain statement, I found out that the ...
2
votes
2answers
306 views
MySQL Master and Slave with vastly different execution plans
I have a complex MySQL query that joins three tables and self-joins one table to itself.
There is a Master and a Slave that have identical data and indices. The Master is a powerful box compared to ...
2
votes
5answers
501 views
mysql explain different results on different servers, same query, same db
After much work I finally got a rather complicated query to work very smootly and return results very quickly.
It was running well on both dev and testing, but now testing has slowed considerably.
...
1
vote
1answer
72 views
Nested loop in query over dblink (Oracle 11g)
I have a SQL query of the form
SELECT ... FROM A@DB1 a, B@DB1 b, C@DB2 c
WHERE A.x = B.x and B.y = C.y
where the first two tables are dblinks to one database, and the last is on a second database.
...
1
vote
1answer
54 views
Parsing output of EXPLAIN command in PostgreSQL
I'm developing an application that requires parsing of execution plans (those produced as output by issuing an EXPLAIN [query] command). Are you aware of any Java library that I could use for this ...
1
vote
2answers
89 views
redundant data in update statement
Hibernate generates UPDATE statements, which include all columns, regardless of whether I'm changing the value in that columns, eg:
tx.begin();
Item i = em.find(Item.class, 12345);
i.setA("a-value");
...
1
vote
4answers
458 views
“TABLE ACCESS BY LOCAL INDEX ROWID” high estimated costs
experts:
i have a query in oracle leading to a high estimated cost in an OLAP system. the estimated row number is only 100K but the cost is a huge number. i wonder how the number of cost is ...
1
vote
0answers
88 views
Erlang: qlc:info throws an error while qlc:eval does not - why?
Works
root@test # erl
Erlang R14B02 (erts-5.8.3) [source] [64-bit] [smp:4:4] [rq:4] [async-threads:0] [kernel-poll:false]
Eshell V5.8.3 (abort with ^G)
1> Tmp = ets:new(test, [bag]), Ref = ...
1
vote
1answer
161 views
Parse phase of sql statement Oracle and TOAD
Is it only the explain plan to look in when tuning a large sql string?
Because when I push Ctrl+E in TOAD for Oracle (which generates explain plan), this takes several seconds. Does TOAD do anything ...