sp_dropdynamicsnapshot_job (Transact-SQL)

Removes a filtered data snapshot job for a publication with parameterized row filters. This stored procedure is executed at the Publisher on the publication database. When the job is deleted, all of the related data is deleted from the MSdynamicsnapshotjobs system table.

Ikona łącza do tematu Transact-SQL Syntax Conventions

Składnia

sp_dropdynamicsnapshot_job [ @publication = ] 'publication' 
    [ , [ @dynamic_snapshot_jobname = ] 'dynamic_snapshot_jobname' ] 
    [ , [ @dynamic_snapshot_jobid = ] 'dynamic_snapshot_jobid' ] 
    [ , [ @ignore_distributor =] ignore_distributor ]

Arguments

  • [ @publication=] 'publication'
    Is the name of the publication from which the filtered data snapshot job is being removed. publication is sysname, with no default.

  • [ @dynamic_snapshot_jobname= ] 'dynamic_snapshot_jobname'
    Is the name of the filtered data snapshot job being removed. dynamic_snapshot_jobnameis sysname, and if it is not supplied defaults to whatever job name is associated with dynamic_snapshot_jobid.

  • [ @dynamic_snapshot_jobid= ] 'dynamic_snapshot_jobid'
    Is an identifier for the filtered data snapshot job being removed. dynamic_snapshot_jobidis uniqueidentifier, with default of NULL.

    Ważna informacjaWażne:

    Only dynamic_snapshot_jobidor dynamic_snapshot_jobname can be specified. If values are not supplied for either dynamic_snapshot_jobidor dynamic_snapshot_jobname, all dynamic snapshot jobs for the publication are removed.

  • [ @ignore_distributor =] ignore_distributor
    ignore_distributor is bit, with a default of 0. This parameter can be used to drop a dynamic snapshot job without doing cleanup tasks at the Distributor.

Return Code Values

0 (success) or 1 (failure)

Uwagi

sp_dropdynamicsnapshot is used in merge replication.

Permissions

Only members of the sysadmin fixed server role or db_owner fixed database role can execute sp_dropdynamicsnapshot.

Zobacz także

Odwołanie

sp_adddynamicsnapshot_job (Transact-SQL)