title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sp_revoke_publication_access (Transact-SQL) |
sp_revoke_publication_access removes the login from a publications access list. |
VanMSFT |
vanto |
randolphwest |
08/22/2024 |
sql |
replication |
reference |
|
|
|
[!INCLUDE SQL Server]
Removes the login from a publications access list. 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_revoke_publication_access
[ @publication = ] N'publication'
, [ @login = ] N'login'
[ , [ @publisher = ] N'publisher' ]
[ ; ]
The name of the publication to access. @publication is sysname, with no default.
The login ID. @login is sysname, with no default.
[!INCLUDE ssinternalonly-md]
0
(success) or 1
(failure).
sp_revoke_publication_access
is used in snapshot, transactional, and merge replication.
sp_revoke_publication_access
can be called repeatedly.
Only members of the sysadmin fixed server role or the db_owner fixed database role can execute sp_revoke_publication_access
.