Index_Name
The name of the index.
Supported By
- SQL Drivers (SQL Server, DB2, and ODBC)
Value
The name of the index in SQL Server.
Associated Attribute
- DF_INDEX_NAME (String)
Remarks
Whenever a table is opened, the driver will automatically read the indexes defined for that table. The Index_Name keyword lets you set up a number for the index with the specified name.
Let's assume a table with indexes: MyTable001, MyTable002, MyTable003, and MyTable004, and the following intermediate file index section:
Index_Number 2
Index_Name MyTable003
This would result in:
INDEX NAME
| DATAFLEX INDEX NUMBER | |
|---|---|
| MyTable001 | 3 |
| MyTable002 | 4 |
| MyTable003 | 2 |
| MyTable004 | 5 |