Tagged Questions

8
votes
4answers
287 views

Why is this an Index Scan and not a Index Seek?

Here's the query: SELECT top 100 a.LocationId, b.SearchQuery, b.SearchRank FROM dbo.Locations a INNER JOIN dbo.LocationCache b ON a.LocationId = b.LocationId WHERE a.CountryId = 2 ...
5
votes
2answers
110 views

MySQL & nested set: slow JOIN (not using index)

I have two tables: localities: CREATE TABLE `localities` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `type` varchar(30) NOT NULL, `parent_id` int(11) DEFAULT NULL, ...
4
votes
4answers
275 views

Is there any point using MySQL “LIMIT 1” when querying on indexed/unique field?

For example, I'm querying on a field I know will be unique and is indexed such as a primary key. Hence I know this query will only return 1 row (even without the LIMIT 1) SELECT * FROM tablename ...
4
votes
3answers
203 views

Are indexes good or bad for a large database?

I read on MySQL Performance Blog that when tables are large, it is better to scan full tables, instead of using indexes. I have a table with tens of millions of rows. When conducting queries, if I ...
4
votes
4answers
4k views

Why do MySQL InnoDB inserts / updates on large tables get very slow when there are a few indexes?

We have a series of tables that have grown organically to several million rows, in production doing an insert or update can take up to two seconds. However if I dump the table and recreate it from the ...
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 ...
2
votes
2answers
272 views

How do you create an index on a subquery factored temporary table?

I've got a query which has a WITH statement for a subquery at the top, and I'm then running a couple of CONNECT BYs on the subquery. The subquery can contain tens of thousands of rows, and there's no ...
2
votes
3answers
130 views

mysql index performance on small “fast-moving” tables

We've got a table we use as a queue. Entries are constantly being added, and constantly being updated, and then deleted. Though we might be adding 3 entries/sec the table never grows to be more than a ...
2
votes
2answers
716 views

Primary Key Effect on Performance in SQLite

I have an sqlite database used to store information about backup jobs. Each run, it increases approximately 25mb as a result of adding around 32,000 entries to a particular table. This table is a ...
1
vote
1answer
52 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
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
41 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
3answers
205 views

Mysql subselect extremely slow (doesn't seem to be using indexes)

This query doesn't complete in a reasonable amount of time: mysql> select * from prices where symbol='GOOG' and date in (select max(date) from prices where symbol='GOOG' and yearweek(date) > ...
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
1answer
107 views

Good strategy for copying a “sliding window” of data from a table?

I have a MySQL table from a third-party application that has millions of rows and only one index - the timestamp of each entry. Now I want to do some heavy self-joins and queries on the data using ...
1
vote
4answers
289 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
25 views

Sybase Temporary Table and Indexes

Is this a misconception? Sybase query optimizer can not consider index on temporary table if it is created and used in same batch or procedure. I'm a bit confused about this as there seem to be ...
0
votes
1answer
215 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 ...