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
4answers
228 views

MYSQL: need help for rapidly growing table and decreasing speed (4mio rows)

I'm facing some issues with a rapidly growing table at increasing speed (currently 4mio rows, 300k inserts a day). I hope I can get some ideas and advices here to improve my setup and squeeze the last ...
1
vote
1answer
57 views

Where to start with optimizing/adding indexes to speed up query?

I'm not really sure where to start with cutting down this query in the search section of my site so that it doesn't take so long. You run a search on a variety of tables, and get filtered results ...
1
vote
1answer
40 views

SQL Server 2000 query performance

We have migrated our few serevr to named instance and I have a situation where a a Stored procedure is taking more time for execution. stored procedure has some bussiness logic pointing to a table. I ...
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
2answers
55 views

Optimize Searching Through Rails Database

I'm building a rails project, and I have a database with a set of tables.. each holding between 500k and 1M rows, and i am constantly creating new rows. By the nature of the project, before each ...
0
votes
3answers
219 views

mysql query optimization (wrong indexes?) avoid filesort

I will try to explain myself quickly. I have a database called 'artikli' which has about 1M records. On this table i run a lots of different queryies but 1 particular is causing problems (long ...