Index Object (SQL-DMO)

The Index object exposes the attributes of a single Microsoft® SQL Server™ index.

Remarks

A SQL Server index optimizes access to data in SQL Server tables. Indexes are also used to enforce some constraints, such as UNIQUE and PRIMARY KEY constraints.

With the Index object, you can:

The Name property of an Index object uses the SQL Server data type sysname. Within a SQL Server database, all index names must be unique.

To create a SQL Server index

  1. Create an Index object.
  2. Set the Name property.
  3. Set the IndexedColumns property to the column or columns participating in the index.
  4. Set the Type property of the Index object to control the attributes of the index created (optional). If not set, a nonclustered index allowing duplicate values is created. For more information about SQL Server index types and limitations on indexes applied to tables, see CREATE INDEX.
  5. Set optional properties, such as FileGroup.
  6. Get the Table object that references the SQL Server table you want from the Tables collection of a connected Database object.
  7. Use the BeginAlter method of the Table object to mark the start of changes to the SQL Server table.
  8. Add the Index object to the Indexes collection of the selected Table object.
  9. Use the DoAlter method of the Table object to mark the end of changes and create the index on the SQL Server.

To remove an existing SQL Server index

  1. Get the Table object that references the SQL Server table you want from the Tables collection of a connected Database object.
  2. Use the BeginAlter method of the Table object to mark the start of changes to the SQL Server table.
  3. Get the Index object representing the SQL Server index to remove from the Indexes collection of the selected Table object.
  4. Use the Remove method of the Index object to remove the Index object from the Indexes collection of the Table object.
  5. Use the DoAlter method of the Table object to mark the end of changes and remove the SQL Server index from the SQL Server table.
Methods
CheckIndex Method RecalcSpaceUsage Method
EnumStatistics Method Remove Method (Objects)
GenerateCreationSQL Method Script Method
GenerateSQL Method (Index) UpdateStatistics Method
Rebuild Method UpdateStatisticsWith Method (Column, Index)

Properties
FileGroup Property Name Property
FillFactor Property NoRecompute Property
ID Property SpaceUsed Property
IndexedColumns Property StatisticsIndex Property
IsFullTextKey Property Type Property (Index)

  


(c) 1988-98 Microsoft Corporation. All Rights Reserved.