Thank yfeldblum Your simple and concise explanation of GUID COMB really helped me. I really looked to reverse this post: I had to shy away from newsequentialid() because I was trying to migrate db SQL Server 2012 to Azure, and the newsequentialid() function is not supported there.
I managed to change all of my default PK tables to COMB GUID with the following syntax:
ALTER TABLE [dbo].[Company] ADD CONSTRAINT [DF__Company__Company_ID__72E6D332] DEFAULT (CONVERT([uniqueidentifier],CONVERT([binary](10),newid(),0)+CONVERT([binary](6),getdate(),0),0)) FOR [CompanyId] GO
My SQL2012 db now lives happily in the Azure cloud.
source share