First of all please note the following carefully:
I have a source database named
S_DB
on one SQL Server hosted on a machine namedS_SRV
, on a domain namedS_DOM
.On a different domain named
D_DOM
, I have another machine namedD_SRV
.On the SQL Server instances hosted on the two machines (
S_SRV
andD_SRV
) I have added a domain user fromD_DOM
, and named [D_DOM\replUser
]. This user is a db_owner on the source, destination databases, and distribution database, and it is also has full rights on the replication snapshot folder.the source SQL Server is SQL 2012, but the destination is SQL 2008 R2
Now, using that [D_DOM\replUser
] I have created successfully a publication on S_SRV
. However, when I wanted to create the subscriber on D_SRV
(which is from the same domain of the user), I'm getting the following message:
TITLE: New Subscription Wizard
SQL Server could not retrieve the list of publications for 'XXXXXXXX'.
Additional information:
An exception occurred while executing a Transact-SQL statement or batch.
(Microsoft.SqlServer.ConnectionInfo)
Could not obtain information about Windows NT group/user 'D_DOM\replUser',
error code 0x5. (Microsoft SQL Server, Error: 15404)
For help, click fro: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&ProdVer=11.00.6020&EvtSrc=MSSQLServer&EvtID=15404&LinkId=20476
BUTTONS: OK
Where could be the problem? and what do you suggest to solve it?