DB2 SQL Error: SQLCODE=-302, SQLSTATE=22001, SQLERRMC=null
This error is the DB2 cryptic way of informing you that a value which an insert query tries to insert in a table is too large. Usually when using java + hibernate we can define a member of an EJB as: @Column(length = 10) protected String receiver; If somehow when the object is created we… Read More »