Hello~
As Hibernate will automatically create index for the primary keys in the table, as well as the primary key type of EmbeddedID, I would need your advice on how to specify the sequence of column in the index. Currently it seems it auto created in alphabetic order.
Code:
Index Name Table_name Column_name Column_pos Descend
-------------- ------------ ----------- ---------- ------------
SYS_C00209013 HOSTTRAFFIC BACKBONEID 1 ASC
SYS_C00209013 HOSTTRAFFIC HOSTID 2 ASC
SYS_C00209013 HOSTTRAFFIC TIMESTAMP 3 ASC
How could I make it like this
Code:
Index Name Table_name Column_name Column_pos Descend
-------------- ------------ ----------- ---------- ------------
SYS_C00209013 HOSTTRAFFIC TIMESTAMP 1 ASC
SYS_C00209013 HOSTTRAFFIC HOSTID 2 ASC
SYS_C00209013 HOSTTRAFFIC BACKBONEID 3 ASC
Thank you