Tagged Questions
The indexes tag has no wiki summary.
17
votes
7answers
927 views
MySQL indexes - what are the best practises?
I've been using indexes on my mysql databases for a while now but never properly learnt about them. Generally I put an index on any fields that i will be searching or selecting using a WHERE clause ...
10
votes
4answers
321 views
Do any databases allow multiple indexes on the same table to be created simultaneously?
I'm pretty sure this can't be done in Oracle, but I'd love to be proved wrong...
Say I have a huge table in with lots of columns and I want to create indexes on a dozen or so columns. Using Oracle, ...
9
votes
3answers
478 views
Can you index tables differently on Master and Slave (MySQL)
Is it possible to set up different indexing on a read only slave, from on the master? Basically, this seems like it makes sense given the different requirements of the two systems, but I want to make ...
8
votes
2answers
139 views
Elegant indexing up to end of vector/matrix
Is it possible in R to say - I want all indices from position i to the end of vector/matrix?
Say I want a submatrix from 3rd column onwards. I currently only know this way:
A = matrix(rep(1:8, each = ...
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
...
7
votes
13answers
840 views
Smallest database that supports indexes, high write volumes, and is ACID?
I don't really care if it's NoSQL or SQL based - as long as it uses int indexes (and stores them in RAM for fast searching) so I can find my data with simple queries based on criteria like user_id, ...
7
votes
1answer
145 views
When does MS-SQL maintain table indexes?
For arguments sake, lets say it's for SQL 2005/8. I understand that when you place indexes on a table to tune SELECT statements, these indexes need maintaining during INSERT / UPDATE / DELETE ...
7
votes
3answers
165 views
Unsigned versus signed numbers as indexes
Whats the rationale for using signed numbers as indexes in .Net?
In Python, you can index from the end of an array by sending negative numbers, but this is not the case in .Net.
It's not easy for ...
6
votes
4answers
255 views
Why would you want to put an index on a view?
Microsoft SQL Server allows you to add an index to a view, but why would you want to do this?
My understanding is that a view is really just a subquery, i.e., if I say SELECT * FROM myView, i'm ...
6
votes
4answers
258 views
Take N elements from sequence with N different indexes in F#
I'm new to F# and looking for a function which take N*indexes and a sequence and gives me N elements. If I have N indexes it should be equal to concat Seq.nth index0, Seq.nth index1 .. Seq.nth indexN ...
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,
...
5
votes
2answers
123 views
Indexes and Nested Sets
I am using a nested set to represent a hierarchy in my application, and am wondering where the best place to put indexes (clustered or otherwise) is. I am using Microsoft SQL Server 2008.
...
5
votes
5answers
296 views
MYSQL: Should I create indexes on large tables used as logs?
I have a basic analytics mysql database table which keeps track of all ipaddresses and urls visited on a user's visit and the time they visited.
There are a large number of inserts (millions per ...
5
votes
6answers
104 views
What are indexes in a database context?
I've read online for a while now that using indexes really speeds up your database queries.
My question is what are indexes? Why do they speed queries up?
5
votes
6answers
1k views
Determining if MySQL table index exists before creating
Our system's automated database migration process involves running .sql scripts containing new table definitions and their accompanying indexes.
I require the ability to create these tables and ...
5
votes
4answers
142 views
Referencing list entries within a for loop without indexes, possible?
A question of particular interest about python for loops. Engineering programs often require values at previous or future indexes, such as:
for i in range(0,n):
value = 0.3*list[i-1] + ...
4
votes
3answers
64 views
What does a two-part single index mean?
In general, every index on a table slows down INSERTs into the table
by a factor of three; two indexes generally make the insert twice as
slow as one index. (Yet, a two-part single index is not ...
4
votes
2answers
504 views
What does “The indexes PRIMARY and id seem to be equal and one of them could possibly be removed.” mean?
What does this mean and how can I fix it?
4
votes
4answers
4k views
Difference between clustered and nonclustered index
Ok, I'm in the middle of developing a project on my own (first time for me for this scale) and it started in a rush so my tables are kind of miserable. I need to add proper index' and need some help.
...
4
votes
2answers
179 views
Transient Mysql::Error: Duplicate entry on a high-traffic site - any ideas?
In my hoptoad logs I will periodically see
Mysql::Error: Duplicate entry 'XXXX' for key 'YYY'
This happens for most of my models, about 6 in all, and I will see this error once every few hours ...
4
votes
6answers
286 views
MySQL composite indexes and operator BETWEEN
I have a question about this query:
SELECT *
FROM runs
WHERE (NOW() BETWEEN began_at
AND finished_at)
Do you think it makes sense to create composite index for began_at and ...
4
votes
1answer
192 views
Should I joint-index an ActiveRecord polymorphic association?
I have a metric table that I expect to be very large. It has a polymorphic association so that it can belongs_to other models that want to record some metric. I typically index association columns ...
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
6answers
233 views
Fastest way to return a primary key value SQL Server 2005
I have a two column table with a primary key (int) and a unique value (nvarchar(255))
When I insert a value to this table, I can use Scope_identity() to return the primary key for the value I just ...
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 ...
3
votes
4answers
84 views
MySQL Order by Optimization
Below is the structure of a table:-
Article: ID, Title, Desc, PublishedDateTime, ViewsCount, Published
Primary Key: ID
Query Used:
Select Title FROM Article ORDER By ViewsCount DESC, ...
3
votes
2answers
47 views
Strange MySQL table sizes
I implemented an inverted index in MySQL using mainly these three tables:
WORDS (word_id, word)
INSTANCES (word_id, doc_id)
DOCUMENT (id, text)
where word_id is INT and doc_id is BIGINT
Then, I ...
3
votes
4answers
82 views
I have one hell of an SQL query I'd like to optimize. Let's talk about it
So, here's a question that will probably have the SQL experts jumping all over me calling me lazy, but I'm stumped. Our online store crashed and burned this morning, and here is the suspect query. ...
3
votes
1answer
61 views
Mysql select with in clause does not use index
I have a contacts table which has a primary key of id. It also has a secondary index idx_id_del_user (id, deleted, user_id).
The following query uses the index and therefore is very fast -
select id
...
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
1answer
75 views
MongoDB Many Indexes vs. Single Index on array of Sub-Documents?
Wondering which would be the more efficient technique for indexing my document's various timestamps that I need to keep track of, keeping in mind my application is fairly heavy on writing, but heavy ...
3
votes
4answers
114 views
LINQ to Objects and improved perf with an Index?
I am using LINQ to Objects and wonder if it is possible to improve the performance of my queries by making use of an index that I have. This is best explained with an example. Imagine a simple type...
...
3
votes
2answers
53 views
MySQL Indexes creation
I have a table with 10 columns and I need to support combined range filters for most of them.
Let's say for example:
WHERE column_a >= a_min AND column_a <= a_max
AND column_b >= b_min AND ...
3
votes
3answers
153 views
Naming MySQL indexes
Is it considered bad form to give an index the same name as the column it is based on?
Like if you have a column named 'foo' and you want to create a normal index on it, would it be okay to name the ...
3
votes
2answers
102 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 ...
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 ...
3
votes
2answers
210 views
Is there an IndexSet and a Range class for Java?
In Objective-C Cocoa we have the NSIndexSet class which stores a series of unique indexes efficiently by keeping an array of ranges. E.g. the set 1, 2, ... 30, 57 would be stored as the ranges 1-30 ...
3
votes
1answer
350 views
Compound Indexes in Apache Cassandra
I am trying to set up a cassandra column family with secondary indexes on a few columns I will need to filter by when reading data back out. In my initial testing, when I use multiple indexes ...
3
votes
2answers
112 views
Indexes in MySQL - 101 intro?
I have worked with creating tables and keys, basic stuff. No experience with indexes. So the question is: Do I need to manually create any index or does MySQL auto create it for me for all tables i ...
3
votes
5answers
178 views
Acessing object like by Index, but by name in C#
I have to classes, Father and Child (by example)
A snippet of my implementation
Class Father.cs
public class Father
{
public int Id { get; set; }
public string Name { get; set; }
public ...
3
votes
2answers
288 views
Do I need to run gather_table_stats every time I create an index in order for the Oracle optimizer to use it?
I saw some examples where indexes were being created. Afterwards the following was executed:
exec dbms_stats.gather_table_stats(...)
Is this necessary for Oracle to pay attention to the index? I ...
3
votes
1answer
116 views
Google App Engine - Tracking which indexes are used
I have a App Engine/Python/Django application which has grown and been modified over the past year and currently has 175 indexes. The problem is that I have not been thourough in cleaning up/removing ...
3
votes
7answers
301 views
Is adding indexes to a SQL Server ever a bad idea?
We have a mid-size SQL Server based application that has no indexes defined. Not even on the the identity columns. I suggested to our moderately expensive application consultant that perhaps we ...
3
votes
2answers
155 views
Composite Primary and Cardinality
I have some questions on Composite Primary Keys and the cardinality of the columns. I searched the web, but did not find any definitive answer, so I am trying again. The questions are:
Context: Large ...
3
votes
2answers
496 views
How can I rebuild / reorganize my indexes on Sql Compact 3.5 SP1?
I have a large (40 Mo) SDF database.
Some queries are very long, but can become quick after some time.
I would like to try to tidy up my indexes but I only find information for SQL Server and not ...
3
votes
4answers
250 views
Does it make sense to use an index that will have a low cardinality?
I'm mainly an Actionscript developer and by no means an expert in SQL, but from time to time I have to develop simple server side stuff. So, I thought I'd ask more experienced people about the ...
3
votes
3answers
58 views
Should I use indexes for a many-to-many database table?
does it make sense to create indexes for a table called user_movies with the following columns:
user_id
movie_id
There will be much more reading than inserting or updating on this table but I'm not ...
2
votes
1answer
63 views
Binary search on an indexed collection (a sorted, indexed sequence)
I have an indexed collection (it must be indexed) of some type A:
var coll: IndexedSeq[A]
I wish to keep coll sorted according to some Ordering[A] but I am frequently adding/removing items to/from ...
2
votes
1answer
32 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 ...