Disable and rebuild an index in HSQLDB
问题 I would like to disable (and later rebuild) all indexes for a given table in an HSQLDB. I know this feature from SQL Server, where you can just write ALTER INDEX ALL ON MyTable DISABLE; to disable all indexes for a table and then rebuild them with ALTER INDEX ALL ON MyTable REBUILD; I am not even sure, if HSQLDB supports disabling and enabling a single index. 回答1: HSQLDB does not have this feature. You can perform SHUTDOWN COMPACT to recreate all indexes on all tables. 回答2: I do not think