I'm using 3 different JPA SequenceGenerators. Everyone creates its own table in datasource with given name:
@SequenceGenerator(name = "a_seq", sequenceName = "A_SEQ")
@SequenceGenerator(name = "b_seq", sequenceName = "B_SEQ")
@SequenceGenerator(name = "c_seq", sequenceName = "C_SEQ")
Is there a way to combine them all in one table, let's say SEQUENCE table, and every generator is one row in this table?