Hibernate version: 3.1.3
Given:
Code:
<id name="id">
<generator class="seqhilo">
<param name="sequence">MY_ID</param>
<param name="max_lo">100</param>
</generator>
</id>
leads to cryptic index names in Oracle like SYS_C006147
Is it possible to manually define the index name?
Also i dont know how to define the index name of multi-column unique key constraints. Its easy to define the index name of a single column unique key constraint, but i totaly fail to define it for the id column and multi column keys.
thx for your feedback
Bernhard