
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 …
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 …
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 …
sql server - Is replication possible on two different domains ...
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 Replication and …
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 …
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, …
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 - Replication Monitor Information using T-SQL
Jan 9, 2015 · It Only works with transactional and transactional peer to peer replication. T-SQL script which you can use to monitor the status of transactional replication and performance of …
SQL Server replication additional subscriber - Database …
Sep 15, 2021 · You can create the replication snapshot from a Database Snapshot which uses copy-on-write sparse files to create a point-in-time consistent view of a database with no …