Skip to content

Latest commit

 

History

History
64 lines (45 loc) · 2.27 KB

sp-startpublication-snapshot-transact-sql.md

File metadata and controls

64 lines (45 loc) · 2.27 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
sp_startpublication_snapshot (Transact-SQL)
sp_startpublication_snapshot starts the Snapshot Agent job that generates the initial snapshot for a publication.
markingmyname
maghan
randolphwest
04/08/2024
sql
replication
reference
sp_startpublication_snapshot
sp_startpublication_snapshot_TSQL
sp_startpublication_snapshot
TSQL

sp_startpublication_snapshot (Transact-SQL)

[!INCLUDE SQL Server]

Used to start the Snapshot Agent job that generates the initial snapshot for a publication. This stored procedure is executed at the Publisher on the publication database.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

sp_startpublication_snapshot
    [ @publication = ] N'publication'
    [ , [ @publisher = ] N'publisher' ]
[ ; ]

Arguments

[ @publication = ] N'publication'

The name of the publication. @publication is sysname, with no default.

[ @publisher = ] N'publisher'

The name of a non-[!INCLUDE ssNoVersion] Publisher. @publisher is sysname, with a default of NULL. You shouldn't specify this parameter for a [!INCLUDE ssNoVersion] Publisher.

Return code values

0 (success) or 1 (failure).

Remarks

sp_startpublication_snapshot is used with all types of replication.

For a non-[!INCLUDE ssNoVersion] Publisher, this stored procedure is executed at the Distributor on the distribution database.

Permissions

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

Related content