I saw this comment:
"Late last week Azure launched a preview of the latest version of
Azure SQL DB and in that preview, NewSequentialID is now supported,
along with many other features that were previously not available."
but I have been unable to find any details of this. Has anyone else found anything that will confirm SQL Azure now supports newsequentialid ?
NEWSEQUENTIALID() is supported in the latest V12 server version of SQL Database. The documentation can be found here: https://msdn.microsoft.com/en-us/library/ms189786.aspx.
It is the same functionality as in SQL Server which is why there is not a separate topic for SQL Database.
As in SQL Server the places where you can use NEWSEQUENTIALID() are very restricted and the behavior is not always intuitive. If not absolutely necessary for your scenario (if it is, can you share it? I would be interested to understand it), you should consider using NEWID().