SqlStatement Element for EventClass/IndexSqlSchema (ADF)

Contains a Transact-SQL statement that creates a SQL Server index for the event table.

Syntaxe

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

Element Characteristics

Characteristic Description

Data type

string, between 1 and 100,000 characters in length.

Default value

None.

Occurrence

Optional once or more per IndexSqlSchema element.

Updates

Can be added, deleted, and modified when updating the application.

Element Relationships

Relationship Elements

Parent element

IndexSqlSchema Element for EventClass (ADF)

Child elements

None.

Notes

Notification Services automatically creates indexes on the event ID and event batch ID, which improves vacuuming performance.

ms145887.note(fr-fr,SQL.90).gifImportant :
If you add, delete, or update an indexing SqlStatement 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.

Exemple

The following example shows a SqlStatement element that creates an index on the StockEvents table.

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

Voir aussi

Référence

Application Definition File Reference

Autres ressources

Définitions d'index pour une classe d'abonnement
Mise à jour des instances et des applications

Aide et Informations

Assistance sur SQL Server 2005