I know that using GUID generated by newid isn't a good candidate for primary key for performance issues.
How about a composite primary key with {newsequentialid(), newid()} so a new GUID is guranteed to be greater than the one generated previously?
Is there a performance issue here too?
You may think why would anyone do this but i am writing a code analysis rule and don't know what crazy things that users will do :)
Thanks