Today_I_Learned

240605 (수) - a field with precision 10, scale 0 must round to an absolute value less than 10^10

bestchoco 2024. 6. 5. 17:11

[오류 로그]

- a field with precision 10, scale 0 must round to an absolute value less than 10^10

 

[원인]

- 특정 컬럼의 데이터 타입이 숫자, 정밀도는 10. 

- 그러나, 반입된 데이터의 정밀도는 11. 

 

[오류 조치]

- 해당 컬럼의 데이터 타입을 numeric(10)에서 numeric(11)로 변경 조치.