sp_help_publication_access (Transact-SQL)
SQL Server 2008
Returns a list of all granted logins for a publication. This stored procedure is executed at the Publisher on the publication database.
Returns a list of all granted logins for a publication. This stored procedure is executed at the Publisher on the publication database.
Is the name of the publication to access. publication is sysname, with no default.
Is the login ID. return_granted is bit, with a default of 1. If 0 is specified and SQL Server Authentication is used, the available logins that appear at the Publisher but not at the Distributor are returned. If 0 is specified and Windows Authentication is used, the logins not specifically denied access at either the Publisher or Distributor are returned.
Is the standard security login ID. login is sysname, with a default of %.
Specifies whether to return all members with publication access or just those who had access before new members were added to the list. initial_list is bit, with a default of 0.
1 returns information for all members of the sysadmin fixed server role with valid logins at the Distributor that existed when the publication was created, as well as the current login.
0 returns information for all members of the sysadmin fixed server role with valid logins at the Distributor that existed when the publication was created as well as all users in the publication access list who do not belong to the sysadmin fixed server role.

