
replication - Sql Server : How to query list of subscriptions and ...
Nov 14, 2018 · To get subscription list from a publisher database, you can run below tsql : use publisherDB; select db_name() PublisherDB , sp.name as PublisherName , sa.name as …
Is it possible to use replication between 2 different SQL Versions?
Mar 29, 2022 · Yes. See the Tutorial: Prepare SQL Server for replication (publisher, distributor, subscriber) on the Prerequisites section of the doc: Replication is not supported on SQL …
change data capture - CDC vs replication vs anything else
Jul 13, 2016 · Replication doesn't really need much infrastructure, just another SQL Server to replicate to. If you want to have a complete copy of the database for reporting purposes, the …
How to fix a messed up replication on MS SQL Server
Apr 19, 2016 · The SQL command 'sp_MSactivate_auto_sub' had returned fewer rows than expected by the replication agent. So I tried an alternative method of deleting the article, …
Creating a read only replica of SQL Server database for reports
Does Transactional replication suit my problem the most among SQL Server replication mechanisms? Out of all of the replication options - Transactional sounds like it is what helps …
sql server - Scripting Replication - Database Administrators Stack …
Automating the creation of transactional replication in SQL Server involves several steps. Below is a process you can follow, which includes scripting the replication setup and ensuring all …
sql server - Clustering vs. transactional replication vs. availability ...
Two (or more) servers in a Windows Failover cluster, SQL Server as a clustered instance; Two (or more) SQL Server instances that are kept up to date with transactional replication; Two (or …
sql server - Is replication possible on two different domains ...
Nov 1, 2013 · Use SQL Authentication for cross domain connections when setting up replication. My replication stairway articles give a step by step walkthrough of setting up SQL Server …
How to pause the subscriber end of transactional replication
Feb 12, 2019 · Replication runs using "Agents"--essentially external executables that do the work. For transactional Replication, you have three agents: Snapshot Agent - this is the process who …
sql server - What User Level is needed for Transactional …
Mar 20, 2015 · I tried using DB_Owner for sql accounts and just a regular Windows user however it seems that Transactional Replication isn't working with those settings. ( I might have messed …