共用方式為


IndexSqlSchema Element for EventClass (ADF)

Contains Transact-SQL statements for creating one or more indexes on an event table.

語法

<EventClasses>
    <EventClass>
        ...
        <IndexSqlSchema>

Element Characteristics

Characteristic Description

Data type

None.

Default value

None.

Occurrence

Optional once per EventClass element.

Updates

Can be added and deleted when updating the application.

Element Relationships

Relationship Elements

Parent element

EventClass Element (ADF)

Child elements

SqlStatement Element for EventClass/IndexSqlSchema (ADF)

備註

ms145895.note(zh-tw,SQL.90).gif重要事項:
If you add or delete an IndexSqlSchema element, updating the application deletes and re-creates the event class to which it corresponds. This includes dropping and re-creating the SQL Server tables and indexes used by this event class. Any data existing in the original SQL Server tables is permanently deleted.

範例

The following example shows how to create an index named StockIndex on the StockSymbol field of the StockEvents table in the application database.

<IndexSqlSchema>
    <SqlStatement>
    CREATE INDEX StockIndex
    ON StockEvents (StockSymbol)
    </SqlStatement>
</IndexSqlSchema>

請參閱

參考

Application Definition File Reference

其他資源

定義事件類別的索引
更新執行個體及應用程式

說明及資訊

取得 SQL Server 2005 協助