Reputation: 189
JDBC exception on Hibernate data access: SQLException for SQL [insert into ..... statement]; SQL state [72000]; error code [14300]; Could not execute JDBC batch update; nested exception is org.hibernate.QueryTimeoutException: Could not execute JDBC batch update
I am getting this exception while inserting data into the table. Could someone please help me with this?
Upvotes: 0
Views: 6324
Reputation: 189
Finally, I am able to find out. It occurred because while inserting the record into the table we are missing the partition key I.e partition key is null.
Upvotes: 1
Reputation: 1
There might be following case : Check table capacity. Invalid mapping check your hibernate configuration file
Upvotes: 0