ra-01438 value larger than specified precision allowed for this column

一般出现在数据库表的主键部分,比如id 你设置的是number(6) ,但是,现在数据库的主键ID值已经超过了6位。所以不能再继续插入数据了。而且会报这个错误!

 

解决:number(6) → number(>6)



     本文转自韩立伟 51CTO博客,原文链接:http://blog.51cto.com/hanchaohan/1185835,如需转载请自行联系原作者



你可能感兴趣的:(ra-01438 value larger than specified precision allowed for this column)