0

如何在后台查看数据库列索引?假设我在自定义 itemtype(在 *-items.xml 中定义)上添加了 3 个这样的索引,如下所示:

         <itemtype generate="true" code="Model"..>
            <attributes>
            .......
            </attributes>
            <indexes>
                <index name="column1Idx">
                       <key attribute="column1" />
                </index>
                <index name="column2Idx">
                    <key attribute="column2" />
                </index>
                <index name="compositeIdx">
                    <key attribute="column1" />
                    <key attribute="column2" />
                </index>                
            </indexes>
            </itemtype>

注意我正在使用 HSQL DB 进行开发。

4

1 回答 1

3

我在后台没有看到任何索引页面。但是你可以让它们进入hac。您可以在 Console -> FlexibleSearch -> SQL Query 选项卡中运行以下查询。

SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS 

要获取索引中的列,您可以使用以下查询:

SELECT * FROM INFORMATION_SCHEMA.STATISTICS 
于 2019-12-07T20:37:10.520 回答