
How to fix a messed up replication on MS SQL Server
Apr 19, 2016 · The database uses replication to publish to a different server. Assuming the database restore would break the replication, I tried to delete the replication and re-create it …
sql server - Add article to transactional publication without ...
Using SQL 2008 R2 transactional replication with pull subscribers, when we add an article, I'd like to avoid having to create an entire snapshot (the db is ~80 GB, so this takes hours). From this
replication - Sql Server : How to query list of subscriptions and ...
Nov 14, 2018 · In Sql Server 2014, how to query a list of Subscriptions & its articles for a given Publication from Publisher? (transactional replication) Yes, there are easier ways to query …
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 - SSMS Replication copies tables but no indexes or data ...
May 21, 2025 · The replication target begins empty. I use the wizards to create a publication of all objects and a subscription to bring them in once daily. (I have a snapshot made first.) The …
sql server - How to completely get rid of replication subscriptions ...
Sep 13, 2018 · Try dropping the old subscriptions, all publications and then removing replication from the DB, i.e. exec sp_dropsubscription --on all subscriptions then exec sp_droppublication …
Is it possible to use replication between 2 different SQL Versions?
Mar 29, 2022 · I have a SQL Server 2016 database in one server and a SQL Server 2019 Standard Edition database in another server. Is it possible to use replication and pass data …
Creating a read only replica of SQL Server database for reports
Transactional replication is "easier" than Merge replication. But that doesn't mean you will always have a smooth sail and can always get away without someone with replication experience …
SQL Server Snapshot Replication - Is there an option to clean up …
Nov 16, 2020 · For some reason, even after re-initializing the replication job with suggestions, the job would not clean up after itself. If anyone reads this and needs another solution, I ended up …
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 …