Tagged Questions

6
votes
2answers
464 views

SQL Server 2005 Transactional Replication Fails to Publish Stored Procedure Containing an Index Create

I've experienced a bizarre problem with a SQL Server 2005 Transactional Publication. The issue is this: If the publication contains an article that is a stored procedure that contains a create index ...
3
votes
3answers
571 views

Consolidate data from many different databases into one with minimum latency

I have 12 databases totaling roughly 1.0TB, each on a different physical server running SQL 2005 Enterprise - all with the same exact schema. I need to offload this data into a separate single ...
1
vote
1answer
91 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 ...
1
vote
1answer
221 views

Can you replicate data from MS SQL Server 2005 to MySQL 5.1 one-way?

I need to set up a one-way transactional replication from a SQL Server 2005 database to MySQL 5.1 Database. I have installed the ODBC driver and started to work on creating the publication, but I am ...
1
vote
1answer
469 views

How do I add new articles with transactional replication?

Suppose I'm using transactional replication to replicate articles from one server to another (both running SQL Server 2000). This is setup and working great. Then, I decide to add a new article. ...
0
votes
1answer
77 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 ...
0
votes
0answers
167 views

SQL Server Transactional Replication with same table reference constraint

With SQL Server 2008 and transactional replication (with updatable subscriptions), I get the following error during replication: The DELETE statement conflicted with the SAME TABLE REFERENCE ...
0
votes
1answer
23 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
36 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
0answers
72 views

"exec sp_register_custom_scripting 'CUSTOM_SCRIPT' ERROR

Configuration SQL 2008 (Server A) replicates to SQL 2008(Server B) which replicates to SQL 2008(Server C). I recently added a column (to Server A) to a replicated table SMS & the DDL change ...
0
votes
0answers
70 views

MSQL Replication Updating rows by deleting and inserting

I just want to clarify, If I have a table that is fed from an outside source daily or hourly (we have multiple tables being replicated that are fed data from a batch file process.) that is then ...
0
votes
0answers
342 views

Cannot use SAVE TRANSACTION? altering replication articles

Hello all (first time posting here) Yesterday i was notified about an error that raised in our production database environment (SQL Server 2008 R2) while trying to release changes to existing stored ...
0
votes
0answers
61 views

How does TableDiff handle continuously changing tables?

I want to use tablediff.exe to compare several tables in replication publisher and subscriber (in SQL 2005). I am curious to know if this utility can handle the scenario where the source table is ...
0
votes
1answer
115 views

Synchronizing in SQL Replication works when manually syncing, but not automatically

I'm using SQL Server 2005 to create a replication copy of the main databases, so that the reports can point to the replication copy instead of locking out our main databases. I have set up the 3 ...
0
votes
1answer
27 views

Adding to the schema of a subscribing database

Transactional Replication on SQL Server 2005 Enterprise x64 (SP3). I need to add check constraints to a databases that is the target for a replication, but I cannot add the check constraints to the ...