Arithmetic overflow error converting IDENTITY to data type tinyint(将 IDENTITY 转换为数据类型 tinyint 的算术溢出错误)
问题描述
我正在 SQL Server 2008 R2 SP2 Express 数据库中设计表.我创建了带有 nvarchar
列的数据和 tinyint
列用于自动递增标识的表,假设行不会超过几行(这就是我选择 0-255 的原因tinyint
).当我添加超过 255 行时,即使在我删除该表中的所有行并尝试添加一个新行之后,此错误也会永久发生.我正在使用 SQL Server Management Studio Express 执行此操作.
I am designing table in SQL Server 2008 R2 SP2 Express database. I created table with nvarchar
column for data and tinyint
column for auto-incrementing identity assuming there will be no more than few rows (that's why I choose 0-255 tinyint
). When I add more than 255 rows, this error keeps occurring permanently even after I delete all rows in that table and try to add one new row. I am doing this using SQL Server Management Studio Express.
- 如何强制数据库引擎检查哪些索引是空闲的?
- 如果我将
tinyint
更改为int
并达到int
数量的限制,也会发生这种情况吗?
- How to force database engine to check what indexes are free?
- Will this happen too if I change
tinyint
toint
and reach limit ofint
number?
推荐答案
一旦你添加了255行,然后想从表中删除所有行,但是增量列的计数器已经设置为255,即使删除了所有行.
Once you add 255 rows, then want to delete all rows from table, But the counter of increment column is already set to 255, even after delete all rows.
要解决这个问题,您需要在删除所有行后重置增量列的计数器.请在删除所有行时使用以下查询,以便计数器重置为 0.执行此查询后,您可以在表中添加行,增量列值为 1 或您在表设计时设置的值.
To solve this, you need to reset counter of increment column after deleting all rows. Please use below query when deleting all rows, so that counter will reset to reset to 0. After execute this query, you can add rows in table with increment column values as 1 or what you set at table design time.
DELETE FROM [TestTable]
DBCC CHECKIDENT ('[TestTable]', RESEED, 0)
GO
如果你想从表中删除所有行,你也可以使用 truncate table 命令.截断命令还将增量列重置为初始值.
You can also use truncate table command, if you want to delete all rows from table. Truncate Command also reset increment column to initial value.
Truncate Table [TestTable]
这篇关于将 IDENTITY 转换为数据类型 tinyint 的算术溢出错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 IDENTITY 转换为数据类型 tinyint 的算术溢出错误
基础教程推荐
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01