gpt4 book ai didi

sql-server - 如果 SQL Server 2005 表的标识 (int) 超过 maxint,会发生什么情况?

转载 作者:行者123 更新时间:2023-12-02 14:36:46 26 4
gpt4 key购买 nike

例如,SQL Server 会警告您还是直接死掉?

最佳答案

当 IDENTITY 列溢出时,SQL Server 2005 将抛出以下错误。

Server: Msg 8115, Level 16, State 1, Line 1
Arithmetic overflow error converting IDENTITY to data type int.
Arithmetic overflow occurred.

您的身份列不需要限制为 INT,如果您怀疑 INT 不够大,实际上可以将其设置为 BIGINT。

INT(32 位有符号)将达到 2,147,483,647,BIGINT(64 位有符号)将达到 9,223,372,036,854,775,807(这是 9 quintillion,足够地球上每人 13 亿个 ID)。

关于sql-server - 如果 SQL Server 2005 表的标识 (int) 超过 maxint,会发生什么情况?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/379768/

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