I have been facing this weird exception while trying to persist some values into a table using Hibernate in a Java application. However this exception occurs only for one parti
Use catalog value with @Table, i.e.:
@Table
@Entity @Table(**catalog = "MY_DB_USER"**, name = "LOOKUP") public class Lookup implements Serializable { }
I don't have this error now. Hope this work.