2
votes
2answers
35 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 …
3
votes
2answers
172 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 = ( …
1
vote
1answer
136 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 trie …
0
votes
2answers
107 views
How can a node in an execution plan have smaller costs than its child?
I always thought that a node in an execution plan can only be executed after its children have executed, and thus the total cost of a node has to be greater or equal than the cost …
1
vote
1answer
196 views
How could predicate pushing on an inline view slow down a query?
I have inherited a somewhat messy query that I am working on refactoring to be performant.
During this process, one of the things I did due to personal preference was change all …
1
vote
4answers
1k views
How accurate is Oracle’s EXPLAIN PLAN?
Are there any good ways to objectively measure a query's performance in Oracle 10g? There's one particular query that I've been tuning for a few days. I've gotten a version that …
0
votes
1answer
89 views
What are good Linux tool(s) for MySQL administration and profiling?
While Windows releases of MySQL administration and profiling tools seem to be a dime a dozen, I'm having a very hard time finding very many designed for Linux.
Note that I'm not l …
1
vote
4answers
2k 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 signifi …
24
votes
12answers
1k 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 …
1
vote
3answers
408 views
How do I optimize MySQL’s queries with constants?
NOTE: the original question is moot but scan to the bottom for something relevant.
I have a query I want to optimize that looks something like this:
select cols from tbl where co …
0
votes
1answer
415 views
mysql explain in a union query
Hi,
After performing EXPLAIN on a query:
explain
select name from t1 where name like '%smthing%'
UNION ALL
select name from t2 where name like '%smthing%'
UNION ALL
select name …
11
votes
2answers
703 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' in …
11
votes
11answers
2k 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 ( …
2
votes
1answer
954 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 PostgreSq …
