IndexSqlSchema Element for SubscriptionClass (ADF)

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

Sintaxis

<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)

Notas

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 Actualizar una aplicación.

Ejemplo

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>

Vea también

Referencia

Application Definition File Reference

Otros recursos

Definir índices de una clase de suscripción
Actualizar instancias y aplicaciones

Ayuda e información

Obtener ayuda sobre SQL Server 2005