We are running a script that creates data in one of the ClaimCenter tables. This table has a foreign key reference to contacts table, that we do not use.
We get an exception:
org.h2.jdbc.JdbcBatchUpdateException: Referential integrity constraint violation: CONSTRAINT_C7F2: PUBLIC.CCX_CLAIMCONTACTEMAILATTACHMENT_EXT FOREIGN KEY(CLAIMCONTACTID) REFERENCES PUBLIC.CC_CLAIMCONTACT(ID) SQLSTATE = 23506
SQL error code = 23506
Is there a way to create entries in CLAIMCONTACTEMAILATTACHMENT_EXT
without creating on CC_CLAIMCONTACT
or breaking this referential integrity and making it work?
We want to create records in CLAIMCONTACTEMAILATTACHMENT_EXT
without creating on CC_CLAIMCONTACT
.