newid() vs newsequentialid() What are the differences/pros and cons?
When you perform an insert in a row the DB, it will be inserted in order relative to the other PKs in the table. With a normal guid, this could be anywhere in the table. A newsequentialid() will always be added to the end of the table. So the performance of inserts is improved. This … Read more