Tagged Questions
3
votes
2answers
103 views
Why don't indices seem to help this in this join (SQL Server 2008R2)?
I've been trying to make some hands-on learning about indices, since I plan to give some lectures about them next semester. I have read the important chapters in Ramakrishnan & Gehrke, and some ...
3
votes
2answers
104 views
MySQL not using index when checking = 1 , but using it with = 0
Here is a perplexing issue I am having:
Query:
EXPLAIN SELECT id,hostname FROM queue_servers WHERE live=1
id select_type table type possible_keys key key_len ref rows ...
2
votes
1answer
33 views
mysql - join first and last records by group type?
With a table like:
idx type dat
0 a foo1
1 b foo2
2 c foo3
3 a foo4
4 b foo5
5 c foo6
6 a foo7
7 b foo8
8 c foo9
How can i get the first and last data ...
2
votes
5answers
565 views
Speeding up a group by date query on a big table in postgres
I've got a table with around 20 million rows. For arguments sake, lets say there are two columns in the table - an id and a timestamp. I'm trying to get a count of the number of items per day. Here's ...
2
votes
3answers
221 views
MySQL Slow join - but not always and not on all tables
We're experiencing a performance issue with a MySQL database that's so weird we need another set of eyes to tell us whether we're going crazy or not.
We've got 2 MySQL Certified Developers in the ...
1
vote
1answer
54 views
MySQL simple query with int index is slow
This simple query:
SELECT trip_id from stop_times WHERE stop_id = 345
Takes about 80ms, which is way too much time considering I'm iterating through ~10k rows. My stop_times table has about 3.5M ...
1
vote
2answers
107 views
How to find rows that share the same combination index?
I have a combination index of 3 columns. I want to find the rows that have the same value for this index. This is my index:
CREATE INDEX foobar ON tablename (foo, bar, asdf);
The index is not ...
1
vote
4answers
113 views
How can I improve the performance of this MySQL query?
I have a MySQL query:
SELECT DISTINCT
c.id,
c.company_name,
cd.firstname,
cd.surname,
cis.description AS industry_sector
FROM (clients ...
1
vote
3answers
217 views
Integer comparison in mysql using an index
I need to compare integers in a mysql table. Pretty simple, but this table is fairly large... so queries take a long time. No problem, I can use an index. According to MySQL documentation, I should ...
1
vote
4answers
290 views
Optimizing MySQL Query, takes almost 20 seconds!
I'm running the following query on a Macbook Pro 2.53ghz with 4GB of Ram:
SELECT
c.id AS id,
c.name AS name,
c.parent_id AS parent_id,
s.domain AS ...
0
votes
1answer
36 views
Managing latest versions of rows with group by queries and how to best arrange the primary key
I have the following table
| Path | Version | FirstName | LastName |
| People/Frank | 1 | Frank | Smith |
| People/Frank | 2 | Frank | Jones |
| People/Jack | 1 ...
0
votes
1answer
217 views
SQL 2005 indexed queries slower than unindexed queries
Adding a seemingly perfectly index is having an unexpectedly adverse affect on a query performance...
-- [Data] has a predictable structure and a simple clustered index of the primary key:
ALTER ...
0
votes
2answers
157 views
MySQL ignores my index
I'm quite new to setting indexes myself. I'm currently just experimenting with it to discover how it works and in what cases a database will make use of the index.
I've got a simple table with 3 ...