The sysindexes table is a view on the sysindices table. It contains one row for each index in the database. The sysindexes table has the following columns.
As with most system catalog tables, changes that affect existing indexes are reflected in this table only after you run the UPDATE STATISTICS statement.
Each part1 through part16 column in this table holds the column number (colno) of one of the 16 possible parts of a composite index. If the component is ordered in descending order, the colno is entered as a negative value. The columns are filled in for B-tree indexes that do not use user-defined data types or functional indexes. For generic B-trees and all other access methods, the part1 through part16 columns all contain zeros.
The clust column is blank until the UPDATE STATISTICS statement is run on the table. The maximum value is the number of rows in the table, and the minimum value is the number of data pages in the table.
In Extended Parallel Server, the tabid column is indexed and allows duplicate values. A composite index on the idxname, owner, and tabid columns allows only unique values.
Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]