将数值转换为数据类型数值时出现算术溢出错误
我已在 2 个不同的数据库上执行此查询:
更新 table1 集 PresencePayFactor = cast(30 asdecimal (4,2))/ 30
它适用于其中一个,但不适用于另一个。 2个数据库是sql server 2008 R2,
它给出以下错误 “将数字转换为数字数据类型时出现算术溢出错误。”
可能是什么问题?
I have executed this query on 2 different databases:
Update table1 set
PresencePayFactor = cast(30 as decimal (4,2))/ 30
it is working on one but not on the other.
the 2 databases are sql server 2008 R2
it is giving the following error
"Arithmetic overflow error converting numeric to data type numeric."
What may be the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两者之间的 NUMERIC_ROUNDABORT 设置是否不同?
设置 NUMERIC_ROUNDABORT (Transact-SQL)
Is NUMERIC_ROUNDABORT set differently between the two?
SET NUMERIC_ROUNDABORT (Transact-SQL)