Share via


NotificationComputedField Class

通知クラス スキーマの計算フィールドを表します。

名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)

構文

'宣言
Public NotInheritable Class NotificationComputedField
    Inherits NamedSmoObject
public sealed class NotificationComputedField : NamedSmoObject
public ref class NotificationComputedField sealed : public NamedSmoObject
public final class NotificationComputedField extends NamedSmoObject
public final class NotificationComputedField extends NamedSmoObject

解説

計算フィールドを使用すると、Microsoft SQL Server の計算機能を利用できます。計算フィールドを使用することにより、通知アプリケーションのパフォーマンスを向上したり、コンテンツ フォーマッタで行う必要がある作業を減らしたり、Transact-SQL の豊富な書式設定機能と変換機能を使用したりすることができます。

計算フィールドが通知テーブルに格納されることはありません。計算フィールドの値は、通知データがコンテンツ フォーマッタに渡される直前に算出され、設定されます。

計算フィールドを追加または削除した後、アプリケーションを更新すると、対応する通知クラスがいったん削除され、再作成されます。同時に、この通知クラスが使用していたデータベース テーブルも削除され、再作成されます。アプリケーションを更新する前に、アプリケーション データベースを必ずバックアップするようにしてください。

継承階層

System.Object
   Microsoft.SqlServer.Management.Smo.SmoObjectBase
     Microsoft.SqlServer.Management.Smo.SqlSmoObject
       Microsoft.SqlServer.Management.Smo.NamedSmoObject
        Microsoft.SqlServer.Management.Nmo.NotificationComputedField

使用例

次の例は、通知クラスの計算フィールドを定義する方法を示しています。

NotificationComputedField computedPrice = 
    new NotificationComputedField(flightNotifications, 
    "FormattedPrice");
computedPrice.SqlExpression = "CONVERT(NVARCHAR(10), Price, 1)";
flightNotifications.NotificationComputedFields.Add(computedPrice);
Dim computedPrice As NotificationComputedField = _
    New NotificationComputedField(flightNotifications, _
    "FormattedPrice")
computedPrice.SqlExpression = "CONVERT(NVARCHAR(10), Price, 1)"
flightNotifications.NotificationComputedFields.Add( _
    computedPrice)

スレッド セーフ

この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

NotificationComputedField Members
Microsoft.SqlServer.Management.Nmo Namespace

その他の技術情報

通知スキーマの定義
ComputedField 要素 (ADF)