Tagged Questions
The composite-index tag has no wiki summary.
9
votes
5answers
363 views
Difference between 2 indexes with columns defined in reverse order
Are there any differences between following two indexes?
IDX_IndexTables_1
IDX_IndexTables_2
If there are any, what are the differences?
create table IndexTables (
id int identity(1, 1) primary ...
3
votes
2answers
79 views
Do mysql composite indexes make some other indexes completely redundant?
If I have an a composite index on (a, b) I understand that queries only concerned with 'a' will still use the composite index (but not queries concerned with 'b')
My question is whether there is any ...
2
votes
3answers
50 views
Mysql covering vs composite vs column index
In the following query
SELECT col1,col2
FROM table1
WHERE col3='value1'
AND col4='value2'
If I have 2 separate indexes one on col3 and the other on col4, Which one of them will be used in ...
2
votes
3answers
303 views
How to index collection by using composite key
I have this class
public class Item
{
public int UniqueKey;
public int Key1;
public int Key2;
public int Key3;
public int Key4;
public string Value;
}
and the collection ...
2
votes
1answer
95 views
Can DataMapper properties appear in multiple composite indexes?
I found that this issue had been discussed in Ticket #58 of DataMapper, apparently way back in 2007, but I can't find how to do it in the latest version (dm-core-0.10.2). I want to define two ...
1
vote
1answer
262 views
Why would you have a clustered composite index when none of the fields are used together?
In a legacy database (SQL Server 2000), we have a clustered index that looks like this:
CREATE CLUSTERED INDEX [IX_usr] ON [dbo].[usr]
(
[uid] ASC,
[ssn] ASC,
[lname] ASC
)
The thing ...