In a database where all of your primary keys are GUIDs, what are the differences/implications and/or pros and cons using newid() versus newsequentialid() as the \"default va
As I know, NEWID() generates the GUID in random order and NEWSEQUENTIALID() generates the GUID in sequential order. NEWSEQUENTIALID() can be used ONLY in default clause of a table.