Viewing 3 posts - 1 through 3 (of 3 total)
Thank you for sharing!
This just solved my issue.
The client sent a csv file with additional columns that weren't in the other csv files. Essentially, the additional columns are not in...
April 12, 2022 at 11:50 pm
SQL error: "the process could not execute SP_repldone/sp_replcounters".
The fix was actually surprisingly easy. You just need to:
1) drop replication > EXEC dbo.usp_Replication_Drop;
2) recreate your publication(s) >
USE [databaseName]
GO
EXEC [dbo].[usp_ReplicationCreatePublication_NameOfPublication]
WAITFOR DELAY '00:00:30';...
January 11, 2019 at 9:15 am
It turned out to be the udp port 1433 needed to be open on the firewall to let users outside the domain access the SQL server instances for my scenario.
January 6, 2019 at 11:15 am
Viewing 3 posts - 1 through 3 (of 3 total)