I noticed asp_membership uses uniqueidentifier, and to me, it seemed like a waste of space, because I could not think of a particular reason to not replace it with identity.
However, SQL Server is not letting me change it to int. It says "Conversion from uniqueidentifier to int is not supported on the connected database server". After googling around, it seems like I would have to break all the relationships etc and then manually delete the column and re-add it as int. Do you guys know of a better approach?
I don't think I would be dealing with multiple databases, so uniqueidentifier seems unneeded for me. Do you agree?
PLEASE NOTE: I am starting out a new web application. Do you still think fixing this would be THAT hard?
Also, note that any of my primary keys would not be part of my URL.