Tagged Questions

This tag generally refers to improving queries to databases such that they are faster and/or more concise/readable.

learn more… | top users | synonyms

23
votes
7answers
1k views

Efficiently querying a 15,000,000 rows table in MySQL

Consider the following database tables: Table "messages" with 13,000,000 rows (one row per message). Table "users" with 3,000,000 rows (one row per user). The following query is used to fetch a ...
17
votes
3answers
313 views

Need help to optimize MySQL query

I have 6 tables: CREATE TABLE IF NOT EXISTS `sbpr_groups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `active` tinyint(1) DEFAULT '0', `dnd` tinyint(1) DEFAULT ...
15
votes
5answers
2k views

How can I further optimize a derived table query which performs better than the JOINed equivalent?

UPDATE: I found a solution. See my Answer below. My Question How can I optimize this query to minimize my downtime? I need to update over 50 schemas with the number of tickets ranging from 100,000 ...
14
votes
4answers
272 views

What do you do to make sure a new index does not slow down queries?

When we add or remove a new index to speed up something, we may end up slowing down something else. To protect against such cases, after creating a new index I am doing the following steps: start ...
14
votes
8answers
959 views

Query against 250k rows taking 53 seconds

The box this query is running on is a dedicated server running in a datacenter. AMD Opteron 1354 Quad-Core 2.20GHz 2GB of RAM Windows Server 2008 x64 (Yes I know I only have 2GB of RAM, I'm upgrading ...
13
votes
3answers
407 views

I'm not sure if I have the correct indexes or if I can improve the speed of my query in MySQL?

My query has a join, and it looks like it's using two indexes which makes it more complicated. I'm not sure if I can improve on this, but I thought I'd ask. The query produces a list of records with ...
12
votes
7answers
730 views

Fastest way to find string by substring in SQL?

I have huge table with 2 columns: Id and Title. Id is bigint and I'm free to choose type of Title column: varchar, char, text, whatever. Column Title contains random text strings like "abcdefg", "q", ...
11
votes
3answers
636 views

How to optimize a slow “select distinct” query across three tables, 40k rows, that only returns 22 results

So I have this query written by someone else that I'm trying to refactor, which pulls some features/materials for an item(shoes, generally). There are a lot of products, and thus a whole lot of ...
11
votes
10answers
498 views

When designing databases, what is the preferred way to store multiple true / false values?

As stated in the title, when designing databases, what is the preferred way to handle tables that have multiple columns that are just storing true / false values as just a single either or value (e.g. ...
11
votes
5answers
9k views

T-SQL Where Clause Case Statement Optimization (optional parameters to StoredProc)

I've been battling this one for a while now. I have a stored proc that takes in 3 parameters that are used to filter. If a specific value is passed in, I want to filter on that. If -1 is passed in, ...
10
votes
1answer
203 views

Select 10 times slower when reversing order

Why would this select, call it A, (0.02406s): select * from char_kills where rid_first <= 110 and rid_last >= 110 order by kills desc limit 500; be 10 times slower than when sort order is ...
9
votes
2answers
780 views

MySQL: Why does an Order By ID runs much slower than Order By other Columns?

I am using MySQL version 5.5.14 to run the following query, QUERY 1, from a table of 5 Million rows: SELECT P.ID, P.Type, P.Name, P.cty , X(P.latlng) as 'lat', Y(P.latlng) as 'lng' , P.cur, ...
9
votes
11answers
931 views

optimize mysql count query

Is there a way to optimize this further or should I just be satisfied that it takes 9 seconds to count 11M rows ? devuser@xcmst > mysql --user=user --password=pass -D marctoxctransformation -e ...
9
votes
4answers
74 views

What's the difference between !col and col=false in MySQL?

The two statements have totally different performance: mysql> explain select * from jobs where createIndexed=false; ...
9
votes
17answers
610 views

SQL: Inner joining two massive tables

Good afternoon, I have two massive tables with about 100 million records each and I'm afraid I needed to perform an Inner Join between the two. Now, both tables are very simple; here's the ...
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
7answers
6k views

JOIN queries vs multiple queries

Are JOIN queries faster than several queries? (You run your main query, and then you run many other SELECTs based on the results from your main query) I'm asking because JOINing them would complicate ...
9
votes
2answers
817 views

SQL magic - query shouldn't take 15 hours, but it does

Ok, so i have one really monstrous MySQL table (900k records, 180 MB total), and i want to extract from subgroups records with higher date_updated and calculate weighted average in each group. The ...
9
votes
7answers
6k views

For autoincrement fields: MAX(ID) vs TOP 1 ID ORDER BY ID DESC

I want to find the highest AutoIncremented value from a field. (its not being fetched after an insert where I can use @@SCOPE_IDENTITY etc) Which of these two queries would run faster or gives better ...
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)
8
votes
1answer
177 views

select top 10 … and select top 30 follows different execution plan

During query optimization I encounted a strange behaviour of sql server (Sql Server 2008 R2 Enterprise). I created several indexes on tables, as well as some indexed views. I have two queries, for ...
8
votes
3answers
414 views

Improving OFFSET performance in PostgreSQL

I have a table I'm doing an ORDER BY on before a LIMIT and OFFSET in order to paginate. Adding an index on the ORDER BY column makes a massive difference to performance (when used in combination with ...
8
votes
3answers
117 views

Does the order of columns in a query matter?

When selecting columns from a MySQL table, is performance affected by the order that you select the columns as compared to their order in the table (not considering indexes that may cover the ...
7
votes
2answers
256 views

How can I simplify/improve the performance of this MySQL query?

I am very new to MySQL and thanks to the great support from you more experienced guys here I am managing to struggle by, while learning a lot in the process. I have a query that does exactly what I ...
7
votes
2answers
90 views

MySQL explain Query understanding

i read on some blogs and on some articles related to optimization, how to optimize query. i read i need to use index and make sure all my primary key and forfien key are set correctly using a good ...
7
votes
0answers
139 views

Building a 1,000M row MySQL table [closed]

reposted on serverfault Questions Question 1: as the size of the database table gets larger how can I tune MySQL to increase the speed of the LOAD DATA INFILE call? Question 2: would using a ...
7
votes
2answers
100 views

Statistics and Cardinality Estimation - Why am I seeing this result?

I came across this little issue when trying to solve a more complex problem and have gotten to the end of my rope with trying to figure the optimizer out. So, let's say I have a table called `MyTable' ...
7
votes
3answers
233 views

Why does the PHP version run faster than MySQL

I have two very large tables to merge and so I have been trying to optomize the update for speed. I noticed that doing the update partially in PHP speeded it up significantly so I assumed this means ...
7
votes
8answers
461 views

Mysql improve SELECT speed

I'm currently trying to improve the speed of SELECTS for a MySQL table and would appreciate any suggestions on ways to improve it. We have over 300 million records in the table and the table has the ...
7
votes
3answers
173 views

ASP.NET/SQL 2008 Performance Problem

We've developed a system with a search screen that looks a little something like this: As you can see, there is some fairly serious search functionality. You can use any combination of statuses, ...
7
votes
5answers
211 views

mySQL: is it possible to make this query any faster?

I have a table "test" containing millions of entries. Each row contains a floating point "feature" and a "count" how often this feature is present in item "id". The primary key for this table is the ...
7
votes
5answers
506 views

Mysql slow query: JOIN + multiple WHERES + ORDER BY

long time lurker, first question! I am struggling to optimize this query, which selects the lowest priced items that match the chosen filters: SELECT product_info.*, MIN(product_all.sale_price) as ...
7
votes
7answers
356 views

Why is doing a top(1) on an indexed column in SQL Server slow?

I'm puzzled by the following. I have a DB with around 10 million rows, and (among other indices) on 1 column (campaignid_int) is an index. Now I have 700k rows where the campaignid is indeed 3835 ...
7
votes
2answers
2k views

Speeding up inner joins between a large table and a small table

This may be a silly question, but it may shed some light on how joins work internally. Let's say I have a large table L and a small table S (100K rows vs. 100 rows). Would there be any difference in ...
7
votes
3answers
2k views

Lots of DESCRIBE queries in Zend Framework

I just set up FirePHP in Zend and I'm noticing a huge number of DESCRIBE queries. Some pages have 50 or more identical queries all on the same table. e.g. 0.00198 connect NULL 0.00449 ...
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
2k views

Downsides to “WITH SCHEMABINDING” in SQL Server?

I have a database with hundreds of awkwardly named tables in it (CG001T, GH066L, etc), and I have views on every one with its "friendly" name (the view "CUSTOMERS" is "SELECT * FROM GG120T", for ...
7
votes
1answer
473 views

Sparse dot product in SQL

Imagine I have a table which stores a series of sparse vectors. A sparse vector means that it stores only the nonzero values explicitly in the data structure. I could have a 1 million dimensional ...
7
votes
5answers
6k views

PostgreSQL - fetch the row which has the Max value for a column

I'm dealing with a Postgres table (called "lives") that contains records with columns for time_stamp, usr_id, transaction_id, and lives_remaining. I need a query that will give me the most recent ...
7
votes
3answers
17k views

mysql select from n last rows

I have a table with index (autoincrement) and integer value. The table is millions of rows long. How can I search if a certain number appear in the last n rows of the table most efficiently?
7
votes
14answers
2k views

Handling large databases

I have been working in a web project(asp.net) for around six months. The final product is about to go live. The project uses SQL Server as the database. We have done performance testing with some ...
6
votes
1answer
181 views

MySQL - Views - Super slow query

This is a weird one. I am trying to use Views in MySQL (I'm reasonably new to MySQL with more experience with Sybase and SQL Server). Any way this new project we are using MySQL as it seems to have ...
6
votes
3answers
121 views

Is it necessary to consider dropping the existing index because it is a prefix of the recommended index

SQL Tuning Advisor of Oracle SQL Developer v3 suggests the following for my query: Consider running the Access Advisor to improve the physical schema design or creating the recommended ...
6
votes
4answers
194 views

Struggling to optimize N+1 query in Hibernate

I’m struggling to improve a n+1 query on a project I’m working on. I use Hibernate with the model shown below, and I want to express a query to retrieve all items related to a portfolio, including the ...
6
votes
2answers
410 views

Same query - different execution plans

SQL 2008. I have a test table: create table Sale ( SaleId int identity(1, 1) constraint PK_Sale primary key, Test1 varchar(10) null, RowVersion rowversion not null ...
6
votes
2answers
119 views

How to iteratively optimize a MySQL query?

I'm trying to iteratively optimize a slow MySQL query, which means I run the query, get timing, tweak it, re-run it, get timing, etc. The problem is that the timing is non-stationary, and later ...
6
votes
4answers
345 views

Is replacing conditional logic with CASE statements efficient in Transact-SQL?

I have a stored procedure that does something like: IF @Param = '1' SELECT HT.HeaderKey, HT.Description, (SELECT SUM(E1) -- E1 is actually a complex expression FROM ...
6
votes
4answers
453 views

compare two queries

How can i compare query X and Y and say that X is better then Y when they both take almost the same time in small cases scenarios??? the problem is that i have 2 queries that are suposed to run on a ...
6
votes
5answers
299 views

MySQL - how to optimize query to count votes

Just after some opinions on the best way to achieve the following outcome: I would like to store in my MySQL database products which can be voted on by users (each vote is worth +1). I also want to ...
6
votes
8answers
2k views

How to check which stored procedure is taking maximum time in sql server

I want to know what are various methods by which I can monitor which of my procedure, query is taking more time on various components(CPU cycle, scan time etc.) than already set threshold value. I ...

1 2 3 4 5 24