NilsBevaart
Programmer
I am trying to set up one of our SQL Servers as a distributor. I started out using the wizzard in the Enterprise Manager (using all standard values), where I got the follwing error:
SQL Server Enterprise Manager could not configure 'UNI-SRV-PRD' as the distributor for 'UNI-SRV-PRD'
Error 14114: '(null)' is not configured as a distributer.
I then tried the QA:
exec sp_adddistributor 'UNI-SRV-PRD'
GO
exec sp_adddistributiondb
@database = 'distributor',
@security_mode = 0,
@login = 'sa',
@password = '****',
@createmode = 0
I got the following error:
Server: Msg 14114, Level 16, State 1, Procedure sp_adddistributiondb, Line 157
'(null)' is not configured as a Distributor.
Can anyone help me out?
Nils Bevaart
SQL Server Enterprise Manager could not configure 'UNI-SRV-PRD' as the distributor for 'UNI-SRV-PRD'
Error 14114: '(null)' is not configured as a distributer.
I then tried the QA:
exec sp_adddistributor 'UNI-SRV-PRD'
GO
exec sp_adddistributiondb
@database = 'distributor',
@security_mode = 0,
@login = 'sa',
@password = '****',
@createmode = 0
I got the following error:
Server: Msg 14114, Level 16, State 1, Procedure sp_adddistributiondb, Line 157
'(null)' is not configured as a Distributor.
Can anyone help me out?
Nils Bevaart