Exception throw in cases of valid data.
John Carroll, January 25, 2017 - 7:27 pm UTC
We recently had a case using Entity Framework where the edmx was created from the database. A linq query which retrieved data from the database threw this exception. Since the data was stored in the database, clearly the data was valid for the specified precision and the exception was thrown in error. It was necessary to adjust the precision to a greater value than required to allow the query to work.
This worked for me
Peter Nosko, August 14, 2017 - 9:43 pm UTC
Problem:
1- INSERT INTO <table> <query>;
2- Get ORA-01438
Solution:
1- Create a view from <query>
2- DIFF the view and the <table>