I was curious as to how SQL Server calculates uniqueidentifiers. I understand that uniqueidentifiers, are GUIDs but are these calculated based on system time? Or are they calculated based on the name of job/script that has called the NEWID() function. I found this but i found this reference to be unclear.
I was curious as to how SQL Server calculates uniqueidentifiers. I understand that uniqueidentifiers,
Share
It depends on whether you are generating them from
NEWID()orNEWSEQUENTIALID()(the last one uses an algorithm involving the mac address the first one doesn’t)