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

SQL Anywhere 12.0.1 » UltraLite - 数据库管理和参考 » UltraLite 数据库参考 » UltraLite Java 版本系统表

 

sysindex 系统表

sysindex 系统表中的每一行都描述了数据库中的一个索引。

列名 列类型 说明
table_id UNSIGNED INTEGER 应用索引的表的唯一标识符。
index_id UNSIGNED INTEGER 索引的唯一标识符。
index_name VARCHAR(128) 索引的名称。
index_flags TINY

以下表示索引类型及其持久性的标志的按位组合:

  • 0x01   唯一键。

  • 0x02   唯一索引。

  • 0x04   索引是持久性的。

  • 0x08   主键。

index_data UNSIGNED INTEGER 仅供内部使用。
 约束