In the database scheme there are some cyclic references. It causes problems. References are created by provider using generated names:
alter table users add constraint FK_olm1qeb13uc1worutbx1sc22k foreign key (USER_ID) references user_settings
alter table user_settings add constraint FK_3ry0dxqxek7eg9frxr6bpofr9 foreign key (USER_ID) references users
I need a solution that is described here, but for MsSql Server. Is there a way in HSQLDB to remove all constraints of concrete type (foreign key (USER_ID) references) when I know only table name?
Without writing stored procedure.