The query-performance tag has no wiki summary.
9
votes
4answers
2k views
Deleting millions of rows in MySQL
I recently found and fixed a bug in a site I was working on that resulted in millions of duplicate rows of data in a table that will be quite large even without them (still in the millions). I can ...
8
votes
4answers
130 views
Why is one query extremely slow, yet identical query on similar table runs in the blink of an eye
I have this query ...which runs extremely slowly (almost a minute):
select distinct main.PrimeId
from PRIME main
join
(
select distinct p.PrimeId from PRIME p
left outer join ATTRGROUP a
...
7
votes
1answer
149 views
When does MS-SQL maintain table indexes?
For arguments sake, lets say it's for SQL 2005/8. I understand that when you place indexes on a table to tune SELECT statements, these indexes need maintaining during INSERT / UPDATE / DELETE ...
5
votes
2answers
928 views
SQL Server: Query times out when executed from web, but super-fast when executed from SSMS
I'm trying to debug the source of a SQL timeout in a web application that I maintain. I have the source code of the C# code behind, so I know exactly what code is running. I have debugged the ...
4
votes
4answers
183 views
MySQL Embedded SELECTs vs. JOINs
Is there a noticeable difference between:
SELECT userid, username, userdept,
(SELECT deptname FROM depts WHERE deptid=userdept) AS deptname
FROM users
and
SELECT userid, username FROM ...
3
votes
3answers
115 views
Characteristics of slow SQL Queries
Was recently asked in an interview why a SELECT query on a MySQL db would be really slow and came up with the following:
Multiple JOINs being performed on the select
Absence of Indexes (indices?) on ...
3
votes
2answers
106 views
sql performance problem
I have a database with 24M records in SQL Server 2000.
When I run this query
select * from cdr
where starttime between '2011-05-15 00:00:00.000' and '2011-05-16 00:00:00.000'
and even this
...
3
votes
5answers
258 views
Why is this query faster without index?
I inherited a new system and I am trying to make some improvements on the data. I am trying to improve this table and can't seem to make sense of my findings.
I have the following table structure:
...
3
votes
6answers
208 views
Improving query performance by using views
I have a large table with 10+ millions records in a SQL Server database. The table contains certain type of data for all 50 states in the US. So if I create 50 views, one for each state, from this ...
2
votes
4answers
125 views
SQL Performance, What executes faster in the SELECT and WHERE conditions
UPDATE: Crap! it's not an integer it's character varying(10)
Executing the query like this uses the index
SELECT t."FieldID"
FROM table t
WHERE t."FieldID" = '0123456789'
But does not use the ...
2
votes
1answer
55 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
5answers
143 views
Optimizing Query. Want to pick the last record without using max in sub-query
This is my query:
SELECT B.RECORDID, A.ITEMCODE, A.ITEMNAME, A.STOCKINHAND, B.SALEPRICE
FROM ITEMMASTER A, STOCKENTRY B
WHERE A.ITEMID = B.ITEMID
AND RECORDID = (SELECT MAX(RECORDID) FROM ...
2
votes
4answers
121 views
Why does this oracle select statement take minutes to complete?
These tables have less than 20 fields, properties has about 9 million rows while listings has 3 million rows, but that should not be a problem. This is what databases are for...
the listing_ids are ...
2
votes
1answer
145 views
Optimized way to get x Random rows satisfying given criteria in MySQL
I need to get x rows from a Database Table which satisfy some given criteria.
I know that we can get random rows from MySQL using ORDER BY RAND ().
SELECT * FROM 'vids' WHERE 'cat'=n ORDER BY RAND() ...
2
votes
3answers
327 views
SQL Server non-clustered Index never shows up in execution plan
I have a database table called tbl_event with the non-clustered indexes IDX_Event_Folder and IDX_Event_Time defined as:
CREATE NONCLUSTERED INDEX [IDX_Event_Folder]
ON [dbo].[tbl_event]([nobjectid] ...
2
votes
6answers
99 views
MySQL query performance
I have the following table structure:
EVENT_ID(INT) EVENT_NAME(VARCHAR) EVENT_DATE(DATETIME) EVENT_OWNER(INT)
I need to add the field EVENT_COMMENTS which should be a text field or a very ...
2
votes
5answers
151 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
2answers
269 views
Strange Problem With Left Join vs Subquery in Select
I have a T-SQL query that is causing performance issues. Its a chunky one but the part that seems to be causing an issue is a simple LEFT JOIN.
This can be resolved by removing the left join and ...
1
vote
2answers
52 views
How to get data from 4 tables in 1 sql query?
I have the following database schema:
table courses:
id
tutor_id
title
table course_categories:
id
category_id
course_id
table categories:
id
name
table tutors:
id
...
1
vote
1answer
34 views
SQL union optimized into a left join, faster but Query Plan says cost more I/O
select id, c.name as name
from a join b on a.id=b.id
join c on a.id=c.id
union
select id, d.name as name
from a join b on a.id=b.id
join d on a.id=d.id
optimized to
select id,
case when ...
1
vote
1answer
40 views
Solr * vs *:* query performance
We're running Solr 3.4 and have a relatively small index of 90,000 documents or so. These documents are split over several logical sources, and so each search will have an applied filter query for a ...
1
vote
0answers
102 views
When does MySQL rebuild a FTS index?
If you want to use the MySQL Full Text Search functionality you define a Full Text Index on field(s) with type VARCHAR. As rows are INSERTed and UPDATEd, mysql has to keep the indexes up-to-date. My ...
1
vote
3answers
85 views
Merge two queries into one
I'm not sure if I can do this in one query but I would like to.
I need all records like this:
SELECT a.field_1, a.field_2, b.field_3, b.field_4
FROM tbl_a AS a, tbl_b AS b
WHERE a.field_1 = ...
1
vote
4answers
42 views
Should I create an index on these columns?
I have some columns in my database, mostly varchar 255s. They are only accessed once, but they're loaded once per page load/request for logged in users. (Mostly they contain things like the user's ...
1
vote
1answer
407 views
SQL server Timeout – only happens very occasionally
I have a web application that occasionally will throw this error….
Exception message: Timeout expired.
The timeout period elapsed prior to
completion of the operation or the
server is not ...
1
vote
1answer
55 views
Is there a faster way to perform this mysql query?
Is there a faster way to perform this most simple query in terms of server load? I don't think I've ever tried anything other than this method:
$sql = 'SELECT thing FROM table WHERE id="' . $id . '" ...
1
vote
3answers
100 views
Question on partial keys and an index on a database table
Suppose I have two queries on a database table.
The queries are defined in terms of fields used in the query:
Query1: depends on f1, f2, and f3
Query2: depends on f1, f2, f3 and f4
I remember ...
0
votes
4answers
71 views
Cost of SORT is slowing down my query
PostgreSQL 7.4 (Yep upgrading)
So in my WHERE condition I have this
AND CASE
WHEN "substring"(t."FieldID"::text, 0, 3) = '01'::text
OR "substring"(t."FieldID"::text, 0, 4) = ...
0
votes
1answer
287 views
HBase scan with compare filters has long delay when returning last row
I have HBase running in standalone mode and encountered some problems when I query the tables using the Java API.
The table has several million entries (but might grow to billions) which have the ...
0
votes
3answers
44 views
mysql query result order issue
I have a table with these fields: userid, logintime, birthdate
I need to get ALL users between birthdate X and Y ordered with the most recently logged in first.
SELECT *
FROM table
WHERE birtdate ...
0
votes
2answers
55 views
Ms-access query performance
I have a sub-form displayed in datasheet view that has a record source like this:
SELECT MyTable.*, myFunction(MyTable.id) as my_result FROM MyTable
Where myFunction() is a vba function that ...
0
votes
3answers
285 views
T-SQL query massive performance difference between using variables & constants
All,
I am seeing some really weird behavior when I run a query in terms of performance between using a variable that's value is set at the beginning to actually using the value as a constant in the ...
0
votes
1answer
96 views
Why does select statement influence query execution and performance in MySQL?
I'm encountering a strange behavior of MySQL.
Query execution (i.e. the usage of indexes as shown by explain [QUERY]) and time needed for execution are dependent on the elements of the where clause.
...
0
votes
2answers
532 views
SQL Server Express 2008 Stored Procedure execution time spikes periodically
I have a big stored procedure on a SQL Server 2008 Express SP2 database that gets run about every 200 ms. Normal execution time is about 50ms. What I am seeing is large inconsistencies in this run ...
0
votes
1answer
32 views
How can I track the last location of a shipment effeciently using latest date of reporting?
I need to find the latest location of each cargo item in a consignment. We mostly do this by looking at the route selected for a consignment and then finding the latest (max) time
entered against ...
0
votes
6answers
95 views
effect of number of projections on query performance
I am looking to improve the performance of a query which selects several columns from a table. was wondering if limiting the number of columns would have any effect on performance of the query.
0
votes
3answers
659 views
How to cast MySQL result to a string?
There is a query:
SELECT blalist FROM blatable WHERE blafield=714
which returns a string that looks like: "2,12,29,714,543,1719". And there is another query:
SELECT userid, name, surname, ...
0
votes
1answer
59 views
Can this SQL Statement be made to perform better?
I have a SQL statement for merging edits from one table to another. I.e.
UPDATE f
SET f.AUDAPLCDE = m.AUDAPLCDE, f.AUDSTF_NO = m.AUDSTF_NO,
f.AUDUPD_ID = m.AUDUPD_ID, f.AUDUPDDTE = m.AUDUPDDTE,
...