Tagged Questions

11
votes
1answer
94 views

Primary key index with a DATETIME as first part of the compound key is never used [migrated]

I have a problem with INDEXING a DATETIME (or even a date) as first part of my PRIMARY KEY. I use MySQL 5.5 Here are my two tables: -- This is my standard table with dateDim as a dateTime CREATE ...
7
votes
1answer
2k views

MySQL index cardinality - performance vs storage efficiency

Say you have a MySQL 5.0 MyISAM table with 100 million rows, with one index (other than primary key) on two integer columns. From my admittedly poor understanding of B-tree structure, I believe that ...
4
votes
2answers
217 views

Is NULL cardinality in an index a problem - MySQL 5.x

I'm having performance problems on the live version of a system which I can't reproduce locally. In comparing a few EXPLAIN results on my local copies of the database with the live one, I note that ...
1
vote
1answer
585 views

MySQL Cardinality vs Auto-Increment Counter

Is the MySQL cardinality number related to the auto-increment counter?
1
vote
2answers
3k views

Why does the cardinality of an index in MySQL remain unchanged when I add a new index?

I have added a FULLTEXT index to one of my MySQL database tables as follows: ALTER TABLE members ADD FULLTEXT(about,fname,lname,job_title); The problem is that using phpmyadmin I can see the ...
0
votes
1answer
152 views

Alternatives to low-cardinality columns (and pointless indexes) in mysql?

So I have a mysql table for photos on my website. Every photo is tied to one of two sets of entities, so has two columns; nEntity1FK, nEntity2FK. Exactly one of these columns is always non-zero in ...
0
votes
1answer
314 views

Question about mysql indexes on low to medium cardinality columns

I have a general question about the way that database indexing works, particularly in mysql. Let's say I have a table with a million rows with a column "ClientID" that is distributed relatively ...