idxname |
VARCHAR(128) |
Name of index |
owner |
VARCHAR(32) |
Name of owner of index (user informix for
system catalog tables and username for database tables) |
tabid |
INTEGER |
Unique identifying code of table |
idxtype |
CHAR(1) |
Index type:
U = Unique
D = Duplicates allowed |
clustered |
CHAR(1) |
Clustered or nonclustered index
(C = Clustered) |
levels |
SMALLINT |
Number of tree levels |
leaves |
INTEGER |
Number of leaves |
nunique |
INTEGER |
Number of unique keys in the first
column |
clust |
INTEGER |
Degree of clustering; smaller numbers
correspond to greater clustering. The maximum value is the number
of rows in the table, and the minimum value is the number of data
pages in the table. This column is blank until UPDATE STATISTICS is
run on the table. |
nrows |
FLOAT |
Estimated number of rows in the table
(zero until UPDATE STATISTICS is run on the table). |
indexkeys |
INDEX-KEYARRAY |
Column can have up to three fields,
in the format: procid, (col1,
... , coln), opclassid where
1 < n < 341 |
amid |
INTEGER |
Unique identifying code of the access
method that implements this index. (Value = am_id for
that access method in the sysams table.) |
amparam |
LVARCHAR |
List of parameters used to customize
the behavior of this access method. |
collation |
CHAR(32) |
Collating order at the time of index
creation. |