title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sp_validatemergepublication (Transact-SQL) |
Performs a publication-wide validation for which all subscriptions (push, pull, and anonymous) are validated once. |
markingmyname |
maghan |
randolphwest |
08/24/2023 |
sql |
replication |
reference |
|
|
|
[!INCLUDE SQL Server]
Performs a publication-wide validation for which all subscriptions (push, pull, and anonymous) are validated once. 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
sp_validatemergepublication
[ @publication = ] N'publication'
, [ @level = ] level
[ ; ]
The name of the publication. @publication is sysname, with no default.
The type of validation to perform. @level is tinyint, and can be one of the following values.
Level value | Description |
---|---|
1 |
Rowcount-only validation. |
2 |
Rowcount and checksum validation. For [!INCLUDE ssVersion2005] Subscribers, this is automatically set to 3 . |
3 |
This is the recommended value. |
0
(success) or 1
(failure).
sp_validatemergepublication
is used in merge replication.
Only members of the sysadmin fixed server role can execute sp_validatemergepublication
.