Does SQL Azure now support newsequentialid

我怕爱的太早我们不能终老 提交于 2020-01-06 02:30:07

问题


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 ?


回答1:


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().



来源:https://stackoverflow.com/questions/29506155/does-sql-azure-now-support-newsequentialid

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!