I may have figured out my missing column error.
it seems that hibernate is finding a table from another schema that has has the same name as another table it uses
is there something i can put into the mapping config to let hibernate know what schema it should find this table in?
09:33:29,797 INFO [TableMetadata] table found: TSTLIVE.COUNTRY
09:33:29,797 INFO [TableMetadata] columns: [country_name, region_id, domain_name, country_id, language_id, image_path, locale_identifier]
09:33:29,807 INFO [TableMetadata] table found: TSTLIVE.COUNTRY_LOCAL_CONTENT
09:33:29,807 INFO [TableMetadata] columns: [country_id, country_local_id, display_name, language_id]
09:33:29,828 INFO [TableMetadata] table found: DANTS.DEVICE
09:33:29,828 INFO [TableMetadata] columns: [model, device_id, serial]
09:33:29,838 DEBUG [Hibernate] Starting failed jboss.har:service=Hibernate
org.hibernate.HibernateException: Missing column: NAME
DANTS is another schema which hibernate should not be using
|