on 2017 Dec 07 8:02 AM
I have created table indexes in items.xml file. After system update, I am unable to validate whether the indexes are actually created. Do anyone know how to check it?
You can use query to check whether indexes are applied or not.
select * from sys.indexes where name like 'Index_name_defined_in_items.xml'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
For different database, they use different shemainfo tables. for hsqldb, if you want to check index creation of table, you use the following in hac sql query:
select * from INFORMATION_SCHEMA.SYSTEM_INDEXINFO where table_name='xxxxx'
for oracle database please check which system table describes index. https://docs.oracle.com/cd/E17952_01/mysql-5.0-en/statistics-table.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have created an index for another attribute(not PK). It is Oracle database. Is there a way to check?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
By default the indexes created on pk. If you want to implement indexes then you will have to explicitly mention in your items.xml. which database you are using??
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
30 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.