I had this error, and I managed to get it to work with very tortuous efforts. I am using PostgreSQL.
First of all, I did this, as suggested above, and turned off validation for the build. Then I checked the check manually by tying things together. My steps were essentially this:
1: connect through the data source explorer to my database. Make sure the connection is in the correct state and I go to TABLES and update the message. Connection update error did not update tables.
2: Probably optional, but I used JPA Tools to export the schema to the database. Again, I click update as in step 1.
3: annotate an object with both an entity and a table. Add a name to the entity and NAME, CATALOG, and SCHEMA in the table annotation.
@Entity(name="DBAssembly") @Table(name="DBAssembly",catalog="lag",schema="public")
4: perform manual check. Adding a directory was important. This is very picky.
source share