次の方法で共有


EventRule の Action 要素 (ADF)

サブスクリプション イベント ルールで実行するアクションを定義する Transact-SQL ステートメントを記述します。

構文

<SubscriptionClasses>
    <SubscriptionClass>
        ...
        <EventRules>
            <EventRule>
                ...
                <Action>

要素の特性

特性 説明

データ型

string。長さは 1 ~ 100,000 文字の範囲です。

既定値

なし。

個数

EventRule 要素につき 1 個 (必須)。

更新

アプリケーションの更新時に変更できます。ただし、追加と削除はできません。

要素の関係

関係 要素

親要素

EventRule 要素 (ADF)

子要素

なし。

使用例

次の例は、EventRule の設定済み Action 要素を示しています。この Transact-SQL ステートメントは、通知関数を使用して通知を作成し、イベント データを記録テーブルに挿入します。

<Action>
-- Insert notifications into StockNotifications view
INSERT INTO StockNotifications ( SubscriberId, DeviceName,
    SubscriberLocale, StockSymbol, StockPrice )
SELECT S.SubscriberId, S.DeviceName, S.SubscriberLocale,
        E.StockSymbol, E.StockPrice
    FROM StockSubscriptions S JOIN StockEvents E
    ON S.StockSymbol = E.StockSymbol
    JOIN StockEventChron C
    ON S.StockSymbol = C.StockSymbol
    WHERE S.StockTriggerPrice &lt;= E.StockPrice
        AND S.StockTriggerPrice &gt; C.StockHighPrice;
-- Update the subscription chronicle
INSERT StockSubscriptionChron (SubscriberId, StockSymbol, StockPrice)
SELECT S.SubscriberId, S.StockSymbol, E.StockPrice
    FROM StockSubscriptions S JOIN StockEvents E
    ON S.StockSymbol = E.StockSymbol;
</Action>

参照

関連項目

アプリケーション定義ファイルのリファレンス

その他の技術情報

イベント ルールの定義
サブスクリプション ルールの定義
インスタンスとアプリケーションの更新

ヘルプおよび情報

SQL Server 2005 の参考資料の入手