gpt4 book ai didi

sql-server-2008 - 在 sql server 2008 中设置 newsequentialid() 默认值时出错

转载 作者:行者123 更新时间:2023-12-04 00:40:57 25 4
gpt4 key购买 nike

我在表中有一个 uniqueidentifier 列,它不是键或索引。我想使用 NEWSEQUENTIALID() 设置默认值,但出现错误:

Error validating default for column..



但是如果我使用 NEWID() 没有错误。这是怎么回事?

编辑:您可以忽略错误对话框并继续。

最佳答案

引用 this question 的已接受答案.

Workaround: create your table without specifying any default, and then type in this T-SQL statement in a normal query window and run it:

ALTER TABLE dbo.YourTable
ADD CONSTRAINT DF_SerialID DEFAULT newsequentialid() FOR SerialID

关于sql-server-2008 - 在 sql server 2008 中设置 newsequentialid() 默认值时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1015676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com