17
votes
8answers
589 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 …
13
votes
6answers
501 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 …
13
votes
8answers
652 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 …
9
votes
2answers
487 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 …
7
votes
7answers
1k 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 …
6
votes
17answers
354 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 …
6
votes
15answers
831 views
Handling large databases
Hi all,
I have been working in a web project(asp.net) for around six months. The final produce is about to get live. The project uses SQL Server as the database. We have done performance testing with …
5
votes
8answers
894 views
Improving performance of Sql Delete
We have a query to remove some rows from the table based on an id field (primary key). It is a pretty straightforward query:
delete all from OUR_TABLE where ID in (123, 345, ...)
The problem is …
5
votes
18answers
798 views
Optimize SQL that uses between clause
Consider the following 2 tables:
Table A:
id
event_time
Table B
id
start_time
end_time
Every record in table A is mapped to exactly 1 record in table B. This means table B has no overlapping …
4
votes
4answers
314 views
Optimizing my mysql query to use index for sorting
I have a composite index based on 3 columns, two of which are constrained in my query and the 3rd is in order by clause yet mysql doesn't use index for sorting.
explain select * from videos where …
4
votes
1answer
102 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 …
4
votes
1answer
96 views
Getting SQL to use the correct index
I have a table with two indexes, one of which is the faster covering index for a certain query. However, mySQL (5.1) is not choosing the correct index. I have looked at the explain for this query and …
4
votes
7answers
1k views
Why is this query doing a full table scan?
The query:
SELECT tbl1.*
FROM tbl1
JOIN tbl2
ON (tbl1.t1_pk = tbl2.t2_fk_t1_pk
AND tbl2.t2_strt_dt <= sysdate
AND tbl2.t2_end_dt >= sysdate)
JOIN tbl3 on (tbl3.t3_pk = …
4
votes
6answers
343 views
How do you fix queries that only run slow until they’re cached.
I have some queries that are causing timeouts in our live environment. (>30 seconds)
If I run profiler and grab the exact SQL being run and run it from Management Studio then they take a long time to …
4
votes
6answers
1k views
How to force nolock hint for sql server logins
Does anyone know of a way to force a nolock hint on all transactions issued by a certain user? I'd like to provide a login for a support team to query the production system, but I want to protect it …
