TransArticle.UpdateCommand プロパティ
更新をレプリケートするのに使用するコマンドを取得します。値の設定も可能です。
名前空間: Microsoft.SqlServer.Replication
アセンブリ: Microsoft.SqlServer.Rmo (Microsoft.SqlServer.Rmo.dll)
構文
'宣言
Public Property UpdateCommand As String
Get
Set
'使用
Dim instance As TransArticle
Dim value As String
value = instance.UpdateCommand
instance.UpdateCommand = value
public string UpdateCommand { get; set; }
public:
property String^ UpdateCommand {
String^ get ();
void set (String^ value);
}
member UpdateCommand : string with get, set
function get UpdateCommand () : String
function set UpdateCommand (value : String)
プロパティ値
型: System.String
挿入コマンドを指定する String 値です。
説明
UpdateCommand プロパティの形式と内容は、sp_addarticle の @upd\_cmd パラメーターに指定したものと一致する必要があります。
既存のアーティクルの UpdateCommand プロパティを変更するには、サブスクリプションを再初期化して、新しいスナップショットを生成する必要があります。
UpdateCommand プロパティを取得できるのは、パブリッシャー側の固定サーバー ロール sysadmin のメンバー、パブリケーション データベースの固定データベース ロール db_owner のメンバー、パブリケーション アクセス リスト (PAL) のメンバーであるユーザーだけです。
UpdateCommand プロパティを設定できるのは、パブリッシャー側の固定サーバー ロール sysadmin のメンバーだけです。 また、パブリケーション データベースの固定データベース ロール db_owner のメンバーも設定できます。
UpdateCommand を取得すると、sp_helparticle を実行したのと同じことになります。
UpdateCommand を設定すると、sp_addarticle または sp_changearticle を実行したのと同じことになります。