cancel
Showing results for 
Search instead for 
Did you mean: 

Where to see sequences and indexes in hybris system ?

ansellsilvans
Participant
0 Kudos

Where to see sequences and indexes in hybris system either via hac or Backoffice?

I'm using Hybris 6.7 and HSQLDB . It is saying index or sequence already created but i couldn't check whether it is already available in system or not.

Accepted Solutions (0)

Answers (1)

Answers (1)

christoph_probst
Active Participant

you can not see it in hac or backoffice directly. You need to use either a native sql query or connect with a ui to the hsqldb.

Query would be:

 select * from INFORMATION_SCHEMA.SYSTEM_INDEXINFO

query could be executed in hac or via Databasemanager http://hsqldb.org/doc/util-guide/dbm-chapt.html. More info http://hsqldb.org/doc/2.0/guide/databaseobjects-chapt.html#dbc_information_schema

UI would be razorsql

Please not that it is not recommended to use HSQLDB on productions system