Tagged Questions

9
votes
9answers
4k views

Should I get rid of clustered indexes on Guid columns

I am working on a database that usually uses GUIDs as primary keys. By default SQL Server places a clustered index on primary key columns. I understand that this is a silly idea for GUID columns, and ...
5
votes
1answer
140 views

Using GUID as PK in big partitioned MySQL table

We have a huge InnoDB table with hundreds of millions of rows and only 3 columns: GUID, enum, smallint. All lookups are done by GUID. We're considering making GUID the PK and partitioning it BY KEY. ...