| Hi - I think there is some kind of a bug. I am 1000% sure that table "Attachment" is in my Oracle 12c DB, but I am still getting "Schema-validation: missing table [Attachment]". Can it be that Oracle is case-insensitive so in DB there is an ATTACHMENT table, but in the entity there is annotation @Table(name="Attachment")? But in the end - SQL scripts were generated by Hibernate and a manual creation of table is OK using the script: create table Attachment ( id number(19,0) not null, accessType number(10,0), attachedAt timestamp, attachmentContentId number(19,0) not null, contentType varchar2(255 char), name varchar2(255 char), attachment_size number(10,0), attachedBy_id varchar2(255 char), TaskData_Attachments_Id number(19,0), primary key (id) ); So isn't this a bug, please? Thanks, Marian Macik |