DROP INDEX Example
IDX_UPDATER
indexDROP INDEX IDX_UPDATER;
IDX_UPDATER
indexDROP INDEX IDX_UPDATER;
SET STATISTICS
Recalculates the selectivity of an index
DSQL, ESQL
SET STATISTICS INDEX indexname
Parameter | Description |
---|---|
indexname |
Index name |
The SET STATISTICS
statement recalculates the selectivity of the specified index.
The SET STATISTICS
statement can be executed by:
The owner of the table
Users with the ALTER ANY TABLE
privilege
The selectivity of an index is the result of evaluating the number of rows that can be selected in a search on every index value.A unique index has the maximum selectivity because it is impossible to select more than one row for each value of an index key if it is used.Keeping the selectivity of an index up to date is important for the optimizer’s choices in seeking the most optimal query plan.
Index statistics in Firebird are not automatically recalculated in response to large batches of inserts, updates or deletions.It may be beneficial to recalculate the selectivity of an index after such operations because the selectivity tends to become outdated.
Note
|
The statements |
It can be performed under concurrent load without risk of corruption.However, under concurrent load, the newly calculated statistics could become outdated as soon as SET STATISTICS
finishes.
IDX_UPDATER
SET STATISTICS INDEX IDX_UPDATER;