DEFINITIONS

Definitions More Info.
Definition ID875
TitleSQL
CategoryNOTES
DefinitionCDC islemi server ismi degistiginde durmustu
Definition Description-- Peki ne yapmak lazim
https://stackoverflow.com/questions/29033706/sql-server-2012-change-data-capture-error-14234

As listed here, check the names match

SELECT srvname AS OldName FROM master.dbo.sysservers
SELECT SERVERPROPERTY('ServerName') AS NewName
If not, fix with:

sp_dropserver '';
GO
sp_addserver '', local;
GO
RecordBycunay
Record Date03-09-2018 16:51:35
Düzenle
Kopyala
Sil