IndexSqlSchema Element for SubscriptionClass (ADF)

Contains Transact-SQL statements for creating one or more indexes on a subscription table.

Syntaxe

<SubscriptionClasses>
    <SubscriptionClass>
        ...
        <IndexSqlSchema>

Element Characteristics

Characteristic Description

Data type

None.

Default value

None.

Occurrence

Optional once per SubscriptionClass element.

Updates

Can be added and deleted when updating the application.

Element Relationships

Relationship Elements

Parent element

SubscriptionClass Element (ADF)

Child elements

SqlStatement Element for SubscriptionClass/IndexSqlSchema (ADF)

Notes

If you add or delete an IndexSqlSchema element, updating the application re-creates the subscription class to which it corresponds. SQL Server 2005 Notification Services renames existing subscription tables by appending Old to the name and then creates new subscription tables. Existing subscription table indexes remain unchanged.

If you want to copy data between the old and new subscription tables, you must do so after updating the application. For more information, see Mise à jour d'une application.

Exemple

The following example shows how to create an index named StockSubIndex on the SubscriberId field of the StockSubscriptions table in the application database.

<IndexSqlSchema>
    <SqlStatement>
    CREATE INDEX StockSubIndex
    ON StockSubscriptions (SubscriberId)
    </SqlStatement>
</IndexSqlSchema>

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