IndexSqlSchema Element for SubscriptionClass (ADF)

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

Syntax

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

Remarks

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 Updating an Application.

Example

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>

See Also

Reference

Application Definition File Reference

Other Resources

Defining Indexes for a Subscription Class
Updating Instances and Applications

Help and Information

Getting SQL Server 2005 Assistance