The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
12 views

Replication Snapshot Agent file naming

When SQL Server Snapshot Agent creates a snapshot (for transactional replication), there's a bunch of .PRE, .SCH, .BCP, and .IDX files, usually prefixed with the object name, a sequence number and ...
4
votes
1answer
35 views

What data type is optimal for clustered index of a table published by using transactional replication?

We have an application which stores data in SQL server database. (Currently we support SQL Server 2005 and higher). Our DB has more than 400 tables. The structure of the database is not ideal. The ...
0
votes
0answers
28 views

AS400 subscription to SQL Server 2008 R2 Std

I am aware that you can create a subscription on an AS400 box to a SQL Server box. My question is, can you have replication if you do not have active journals going on some of the AS400 tables?
0
votes
1answer
33 views

distribution.dbo.MSdistribution_history comments explanation

The comment column of distributor.dbo.MSdistribution_history contains comments such as <stats state="2" fetch="11554" wait="214007" cmds="17898546" callstogetreplcmds="106880"> ...
0
votes
0answers
37 views

Transactional Replication with LocalDB

I searched everywhere but couldn't find an answer. I know LocalDB cannot be a subscriber to merge replication. But what about transactional replication? I've tried both the SQL Server Management ...
0
votes
0answers
25 views

How to upgrade subscriber database schema for large database in transactional replication

I have live (Publisher) and History (Subscriber) databases configured for transactional replication. We keep only limited data in Live database. Move all historical data to History database using ...
0
votes
0answers
42 views

Resume Replication after restoring publication database

We are using Transactional Replication. I have publisher database called D1 and subscriber database D2. D1 is getting log shipped at the DR environment. we have 'sync with Backup' option is enable on ...
0
votes
0answers
26 views

Partitioning Of A Subscriber Table When Publisher Is Not Partitioned

I have a very large, non-partitioned, transactionally replicated table in a 3rd party database that that I administrate but cannot alter. Although I cannot change the publisher, I would like to ...
0
votes
0answers
82 views

Delay Transactional Replication SQL Server 2012

I have an issue as described below and would like to see if there would be a way around this. First, here is how it is set up: Setup Server A is the Distributor. It is also the Publisher of 5 ...
0
votes
1answer
125 views

SQL Server Transactional Replication - Execute Pre and Post Script

I am using SQL Server 2008 and have transactional replication setup. I need to be able to execute a pre replication script on the publisher and then a post replication script on the subscriber. Is ...
0
votes
0answers
33 views

Replicating views when source has change schema

Is it possible to use transactional replication to replicate a view if the source has changed schemas? For example: The publisher has one table, dbo.Foo and one view, dbo.FooView. FooView is defined ...
0
votes
0answers
90 views

SQL Server 2008/2012 Replication of Partitions

I am an ASP.NET guy and have read about SQL Server Replication quite a bit but could not find an answer to this. I am unsure if this is a basic question, appreciate if you could direct me to some ...
0
votes
1answer
282 views

Does SQL Server 2012 supports transactional replication with updatable subscription?

On this page, Microsoft states that: This topic describes the deprecated Replication features that are still available in SQL Server 2012. These features are scheduled to be removed in a future ...
0
votes
0answers
223 views

SQL Server replication: statement delivery AND replicate stored procedure execution

I am using: SQL Server 2008 R2 Transactional Replication (Push, Distributor on Publisher Server) to replicate tables and stored procedures to a subscriber. The client application which changes ...
3
votes
1answer
259 views

SQL Server Bi-Directional Transactional Replication - Is it a good use-case?

We're having a problem with scaling out with SQL server. This is largely because of a few reasons: 1) poorly designed data structures, 2) heavy lifting and business/processing logic is all done in ...
6
votes
3answers
141 views

transactional replication using script

I am able to configure transactional replication using SSMS and it works properly. But i want to configure it using script so that i use it from my c#/vb application. Is there any way to do that?
4
votes
1answer
225 views

Is it possible to monitor transactional replication using Transact SQL

I am trying to monitor continuous replication status using transact sql from c# application. From my c# application i successfully start the job by using this.. exec sp_startpushsubscription_agent ...
1
vote
0answers
178 views

Log Reader Agent in transactional replication scanning large transaction log during recurring job causing latency

We just implemented a new job on a medium traffic database involved in transactional replication, that will process inputs from an Excel spreadsheet and call a stored procedure to create records ...
1
vote
1answer
98 views

DB High availability through jdbc connection proxy?

I need to have a high availability database system but I can't do it through database cluster or master/slave. I need a jdbc proxy that knows to update multiple data source for a single update ...
0
votes
1answer
88 views

Strategy to check if Transactional Replication succeeded

We would like to use Transactional Replication to replicate data from one source database to recipient databases. If replication succeed it is necessary to notify some other systems in workflow. Is ...
0
votes
1answer
306 views

Transactional Replication Stopping At Distributor

My publisher is dutifully pumping data into the distributor but that is where it is stopping. I'm new to the realm of replication. I know that I can easily solve this by dropping and recreating ...
0
votes
1answer
106 views

SQL Server Replication across a unidirectional gateway

We would like to replicate a SQL Server 2005 database across a unidirectional gateway between a very secure Process LAN and a somewhat less secure Business LAN. Does anyone know: If there is a way ...
0
votes
1answer
234 views

Transactional Replication Subscriber Recovery Mode

I have been doing database work for years but have very limited experience with replication. When using Transactional Replication, is there any reason the subscriber needs to be in Full recovery ...
0
votes
0answers
53 views

Hibernate : object replication and saving with different id

I need a little help about Hibernate. I used the BeanLib library in order to replicate an object with all its children collections. Now I have to save this replicated-new-object and its ...
0
votes
0answers
63 views

How to improve reader threads' performance while writer threads' are heavily working in SQL Server

My production uses SQL-Server 2008 R2 as our database. In one of my bussiness scenario, there are many writer threads writing an amount of data into a big table simultaneously. We found that my read ...
0
votes
1answer
214 views

SQL database replication best practice

I have a project that require the following: The main SQL server and database will be in headquarters and two remote locations need to work with their system offline, due to frequent internet ...
0
votes
0answers
46 views

Write custom logic in sp_msins_ tablename of Transaction Replication

I want to write a custom logic in sp_msins_tablename SP of replication. I am using transaction replication and for initial data transfer am creating Snapshot which generates the data and SP files. If ...
2
votes
0answers
144 views

Large number of commands in the distribution database waiting to be applied to subscriber

I am using transitional publication with updatable subscribers SQL replication. I updated the database schema with new tables, views, and indexes. Since the update, 2 days ago, there is still a high ...
0
votes
2answers
780 views

“Uninitialized subscription” error in replication monitor

Im using SQL Server 2012 and trying to implement transactional replication. Im using the system stored procedures to create the publications and subscriptions. I was successful in creating these ...
0
votes
2answers
1k views

SQL Server 2008R2 Transactional Replication - Move SubscriberDB - Push Subscription

SQL Server 2008R2 Transactional Replication - Move SubscriberDB - Push Subscription I have a requirement to move a subscriber database to a new server outside of a system outage i.e. I cannot stop ...
1
vote
1answer
326 views

SQL Server 2005 transactional replication performance

Does anybody know how transactional replication have impact to performance of publisher database? I want to use a subscriber as a base for generate on-line reports and statistics (use transactional ...
4
votes
2answers
202 views

What's the solution for bidirectional Replication type on vertical filtered table(some of columns) in SQL Server 2008

Assume we have a table in two database instance like following: CREATE TABLE StudentList ( StudentId int NOT NULL PRIMARY KEY, StudentName nvarchar(255) NOT NULL, StudentGrade int ) ...
0
votes
1answer
405 views

Wrapper stored procedure to create publication for transactional replication

I have created a wrapper stored procedure to create publication for transactional replication for SQL Server 2008 Standard Edition SP3. But when I execute the procedure I get the following error. The ...
1
vote
0answers
57 views

Can you merge two source systems into one with SQL Server Replication?

I currently use SSIS to replicate table from our source systems to our reporting data stores, which are identical to the productions systems with historical data. I am looking into switching our ...
0
votes
1answer
160 views

How to update database on which replication is configured?

We have replication setup on a database and is working fine. Now we want to update the database on publisher. So using installer we updated the database but we are getting errors like cannot update ...
0
votes
2answers
565 views

Fix broken transactional replication in SQL Server 2005

I've set-up a transactional replication in SQL Server 2005 and I've disabled the DDL trigger that were created when setting up replication. After playing a bit (to understand what will happen) the ...
0
votes
1answer
220 views

Transactional Database Replication over an unreliable channel

I wanted to set up database replication (transactional) between 2 offices and I was wondering if it's advised to do so over an unreliable channel? I plan to set up this transactional replication on a ...
0
votes
1answer
422 views

<Transactional Replication> Data is not getting updated in subscriber

I was testing Transactional Replication on my machine before setting up on PROD but when I do a UPDATE that update is not getting propagated to the subscriber and when I see the replication monitor I ...
1
vote
2answers
354 views

Post Replication script in SQL Server 2008

I have setup SQL Server 2008 Transactional Replication between 2 databases. Once the replication session is complete, I want to execute a T-SQL script. Is there a configuration to setup Post ...
0
votes
2answers
753 views

Can SQL Transactional Replication work between SQL 2005 Standard (Publisher) and SQL 2008 R2 Web (Subscriber)?

I've been trying, googling and hitting my head against the wall but can't figure our what the problem is or how to solve it. I have and SQL 2005 Standard server acting as a publisher. I need to do ...
0
votes
1answer
94 views

Add additional subscription?

I already have a push transaction replication (SQL 2008) from A to B. Now I need to add an additional subscription C. I know the following steps should work, Remove the publication from A. Backup ...
0
votes
1answer
87 views

Was this subscription initialized?

Running SQL 2008... Where can I find in the SQL dB or how can I determine if a transactional subscription was initialized when it was created?? AHIA, LarryR...
0
votes
1answer
114 views

Transactional Replication on a table carrying incompatible data type

I am trying to implement a transactional replication in 2008. Both the publisher and subscriber are in 2008 version.So far so good. The publisher database is in 2005 compatibility mode. It has a ...
0
votes
1answer
70 views

Will adding column to replication db have influence on source db?

If I add column to a replication database, will this column also be added to source database? I'm using transactional replication. PS I don't want it to be added to source, I just want to make sure ...
1
vote
1answer
691 views

It is possible to alter SQL Server replication filter without delivering an entire publication snapshot?

I am constantly asked to change the filters on my companies SQL Server Transactional Publications which contain several hundred tables and roughly 400GBs of row data. Each time I am required to alter ...
1
vote
1answer
381 views

Change Database Structure on Table being Replicated

I need to make structure changes to a database that is part of a subscription that is using Transactional Replication. I am wondering if I take the Database out of the Article list, make the ...
0
votes
1answer
369 views

Replication and CDC SQL 2008r2 what causes some replicated tables to drop CDC?

Transactional replication from SQL 2005 into SQL 2008r2. CDC established on SQL 2008r2 side. Each day, from 2 to 4 of these tables lose their CDC settings (ie. is_tracked_by_cdc in sys.tables moves ...
0
votes
1answer
143 views

Validation stored procedure for Replication

Does anyone know of the correct stored procedure that validates the actual code in transactional replication? I have a view that basically is a select * from table1. I changed that view to select * ...
1
vote
2answers
373 views

Multiple Publishers, Single Subscriber (Data Warehouse)

I'm trying to figure out the best way to populated the staging database in a data warehouse. I will have a number of databases (identical schema, SQL Server 2005 Standard). Ideally I'd set up each ...
2
votes
1answer
330 views

Problems with Entity Framework Model when Transactional Replication active

I have a situation where I use SQL server transactional replication from my main database to my failover database. I have a main site and my fail over website is using my failover database. Both ...

1 2