Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Reference » Views » System views in Sybase Central

SYSOPTSTAT system view Next Page

SYSPHYSIDX system view


Each row in the SYSPHYSIDX system view defines a physical index in the database. The underlying system table for this view is ISYSPHYSIDX.

Columns
Column name Column type Column constraint
table_idUNSIGNED INTNOT NULL
phys_index_idUNSIGNED INTNOT NULL
root INTEGER NOT NULL
key_value_countUNSIGNED INT NOT NULL
leaf_page_countUNSIGNED INT NOT NULL
depthUNSIGNED SMALLINT NOT NULL
max_key_distanceUNSIGNED INT NOT NULL
seq_transitionsUNSIGNED INT NOT NULL
rand_transitionsUNSIGNED INT NOT NULL
rand_distanceUNSIGNED INT NOT NULL
allocation_bitmapLONG VARBIT
long_value_bitmapLONG VARBIT

table_id    The object ID of the table to which the index corresponds.

phys_index_id    The unique number of the physical index within its table.

root    Identifies the location of the root page of the physical index in the database file.

key_value_count    The number of distinct key values in the index.

leaf_page_count    The number of leaf index pages.

depth    The depth (number of levels) of the physical index.

max_key_distance     For system use only.

seq_transitions    For system use only.

rand_transitions    For system use only.

rand_distance    For system use only.

allocation_bitmap     For system use only.

long_value_bitmap    For system use only.

Constraints on underlying system table

PRIMARY KEY (table_id, phys_index_id)

See also