When some database constraint fails during the run of dbunit tests, its name is printed out with the exception, e.g.
Caused by: org.hsqldb.HsqlException: integrity constraint violation: foreign key no parent; FK_AJRY4L84JDA0RY0XHP3A71CQ9 table: <Table name>
Is there any possibility to find out which particular constraint that is resp. which column in the affected table? The displayed constraint name seems to be a generated one.
I could not find anything about it on the internet, so the only thing I do is inspecting the affected table, see which constraints it has and guess which could be violated by my dataset...