active questions tagged replication - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T05:11:34Z http://stackoverflow.com/feeds/tag/replication http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1853286/search-filenames-in-mysql-database-table-restricted-by-filetype 0 Search filenames in MySQL database table restricted by filetype? ju 2009-12-05T20:05:47Z 2009-12-07T02:59:04Z <p>Hello</p> <p>I have a MySQL database that I replicate from another server. The database contains a table with this columns</p> <p>ID, FileName and FileSize</p> <p>In the table there are more than 4'000'000 records. I want to make fast a search in FileName (varchar) column</p> <p>I found that I can use for this Sphinx search engine. The problem is that I want to restrict searches by filetype. Do I have to and how (trigers?) to extract file extensions for all rows? May be I have to create another table (because this one is replicated) and join them in 1:1 relation?</p> <p>Can you give me some advices please :)</p> http://stackoverflow.com/questions/1857179/sql-server-replication-consolidation 0 SQL Server Replication, Consolidation BrainMan 2009-12-07T00:42:42Z 2009-12-07T00:59:13Z <p>How do I consolidate multiple publications into 1 consolidated table on the subscriber? For example. Consider a very simple sales model where we replicate sales data from the stores to the central office.</p> <pre><code>Store 1 Sales Table ===================== Item Qty Amt ===================== 111 2 10.00 222 1 7.00 333 1 12.00 Store 2 Sales Table ===================== Item Qty Amt ===================== 111 2 18.00 222 1 13.00 333 1 4.00 </code></pre> <p>How do I replicate these two sales publications from the publisher to ONE consolidated sales table at the subscriber:</p> <pre><code>Central Office ============================== Store Item Qty Amt ============================== 1 111 2 10.00 1 222 1 7.00 1 333 1 12.00 2 111 2 18.00 2 222 1 13.00 2 333 1 4.00 </code></pre> http://stackoverflow.com/questions/1855078/mysql-replication-out-of-sync-what-commands-do-i-run-to-sync-it-back-up 0 Mysql Replication out of sync? What commands do I run to sync it back up? alex 2009-12-06T11:06:14Z 2009-12-06T11:06:14Z <p>I have a master-master replication system. However, due to an auto-increment issue, I got an error in replication...and it stopped replicating.</p> <p>Someone told me to do:</p> <pre><code>stop slave; SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1; start slave; </code></pre> <p>It didn't work. Then they told me to do:</p> <pre><code>SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 2; </code></pre> <p>It didn't work. Then to test it out, I did:</p> <pre><code>SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 99999; </code></pre> <p>It starts, but it is not updating. I created a table on DB1...and it is not showing up on DB2...</p> <p>Below are the SHOW STATUS for both my DB1 and DB2 (I hit them together):</p> <pre><code>mysql&gt; show master status\G *************************** 1. row *************************** File: mysql-bin.000605 Position: 2019727 Binlog_Do_DB: Binlog_Ignore_DB: 1 row in set (0.00 sec) mysql&gt; show slave status\G; *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event Master_Host: Master_User: Master_Port: Connect_Retry: 60 Master_Log_File: mysql-bin.000605 Read_Master_Log_Pos: 2008810 Relay_Log_File: mysqld-relay-bin.001731 Relay_Log_Pos: 10176595 Relay_Master_Log_File: mysql-bin.000470 Slave_IO_Running: Yes Slave_SQL_Running: Yes Replicate_Do_DB: Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0 Last_Error: Skip_Counter: 4255373725 Exec_Master_Log_Pos: 10176458 Relay_Log_Space: 135062517347 Until_Condition: None Until_Log_File: Until_Log_Pos: 0 Master_SSL_Allowed: No Master_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: 1376343 1 row in set (0.00 sec) </code></pre> <p>How do I fix it so that they sync back up again? Thank you.</p> http://stackoverflow.com/questions/1851314/sql-server-replication-distributor 1 SQL Server Replication, Distributor BrainMan 2009-12-05T06:14:48Z 2009-12-05T18:39:53Z <p>I need to implement a SQL Server replication solution. Very simple need for now. I just need to replicate one pretty simple table from 200 remote sites or so to one central server. The data is not really transactional in nature. I just need it moved up to the central server once a day. I can't decide if I should use push or pull, and I'm not sure if the distributor should live on the server side, or on all the clients. </p> <p>The server and all the remote sites all live on a fairly decent VPN. The server is 2005, and it's not being pushed very hard at the moment. Just a few jobs here and there collecting data (which I want to get away from) and pushing reports/exports to various vendors once a day. The sites are a mix of 2000/2005.</p> http://stackoverflow.com/questions/1834345/ms-access-2003-really-simple-question 0 MS Access 2003 - Really simple question Justin 2009-12-02T17:05:15Z 2009-12-02T17:19:42Z <p>If I try to duplicate an access file (this file is split into mdb and be mdb, and also has mde files), by importing everything into a brand new access application, why won't the table links work? Everytime I click anything it says that the tables cannot be found</p> <p>Probably so simple its not worth asking on here, but ....???</p> <p>Thanks!</p> http://stackoverflow.com/questions/1800591/sql-server-2008-replication-avoiding-reinitialization 0 SQL Server 2008 Replication (avoiding reinitialization) Chris Klepeis 2009-11-25T23:12:29Z 2009-11-30T18:27:10Z <p>I'm trying to determine if there's a better way to handle replication than the way we're currently doing things.</p> <p>We're essentially trying to determine 2 things:</p> <blockquote> <ol> <li>Is there any way to add an existing column from a table to replication without reinitializing the whole publication</li> <li>Can you just select a specific article to reinitialize instead of all of the articles in a publication?</li> </ol> </blockquote> <p>(I'm a bit new to replication... trying to get up to speed, so I apologize if my terminology doesn't make sense)</p> <p>Right now we have about 30 publications so that if any have to be reinitialized there's a minimal impact... because several of our tables are pretty massive. We'd prefer to only have several publication.</p> <p>Any ideas would be greatly appreciated.</p> <p><strong>Update</strong></p> <p>When we try to add a column to an article we receive the message:</p> <blockquote> <p>You have changed one or more properties that require all subscriptions to be reinitialized. Saving these changes marks each subscription that supports automatic reinitialization to be reinitialized from a snapshot the next time its Distribution Agent runs. You must run the Snapshot Agent to generate the snapshot.</p> </blockquote> <p>We want to avoid reinitializing all subscriptions.. we're using transactional replication... again we want to add an existing column to an existing publication without having to reinitialize all subscriptions. </p> http://stackoverflow.com/questions/1731599/can-i-set-up-a-filtered-star-pattern-database-replication 1 Can I set up a filtered, star-pattern database replication? skiphoppy 2009-11-13T20:12:36Z 2009-11-28T12:50:43Z <p>We have a client that needs to set up N local databases, each one containing one site's data, and then have a master corporate database containing the union of all N databases. Changes in an individual site database need to be propagated to the master database, and changes in the master database need to be propagated to the appropriate individual site database.</p> <p>We've been using MySQL replication for a client that needs two databases that are kept simultaneously up to date. That's a bidirectional replication. If we tried exactly the same approach here we would wind up with all N local databases equivalent to the master database, and that's not what we want. Not only should each individual site not be able to see data from the other sites, sending that data N times from the master instead of just once is probably a huge waste.</p> <p>What are my options for accomplishing this new star pattern with MySQL? I know we can replicate only certain tables, but is there a way to filter the replication by records?</p> <p>Are there any tools that would help or competing RDBMSes that would be better to look at?</p> http://stackoverflow.com/questions/1724191/mysql-slave-i-o-thread-not-running 0 MySql Slave I/O Thread not running unknown (yahoo) 2009-11-12T17:59:56Z 2009-11-28T12:48:30Z <p>I have set up replication for MySql server. I can connect from the slave machine the master server using the replication user/password. I have got the slave sql thread running but the slave i/o thread is not running and the slave i/o status comes as empty when checked using 'show slave status'. What could be the problem ? How to solve this ? restarting the slave does not help. This was my bad: Instead of giving a 'replication slave' privilege to <em>.</em>, I was only giving it for my_db.*.</p> http://stackoverflow.com/questions/910008/how-can-i-minimize-the-data-in-a-sql-replication 3 How can I minimize the data in a SQL replication henriksen 2009-05-26T10:29:45Z 2009-11-26T15:37:50Z <p>I want to replicate data from a boat offshore to an onshore site. The connection is some times via a sattelite link and can be slow and have a high latency. </p> <p>Latency in our application is important, the people on-shore should have the data as soon as possible. </p> <p>There is one table being replicated, consisting of an id, datetime and some binary data that may vary in length, usually &lt; 50 bytes. </p> <p>An application off-shore pushes data (hardware measurements) into the table constantly and we want these data on-shore as fast as possible. </p> <p><strong>Are there any tricks in MS SQL Server 2008 that can help to decrease the bandwith usage and decrease the latency? Initial testing uses a bandwidth of 100 kB/s.</strong></p> <p>Our alternative is to roll our own data transfer and initial prototyping here uses a bandwith of 10 kB/s (while transfering the same data in the same timespan). This is without any reliability and integrity checks so this number is artificially low. </p> http://stackoverflow.com/questions/619176/are-table-indexes-getting-replicated-to-my-sqlce-database 0 Are table indexes getting replicated to my sqlce database? Konstantinos 2009-03-06T15:09:52Z 2009-11-26T01:15:51Z <p>Hi</p> <p>i have a ms sql database that is getting replicated to mobile sqlce databases.</p> <p>My question is the following: </p> <p>Are the indexes getting propagated to the sqlce database tables as well?</p> http://stackoverflow.com/questions/1775452/sql-server-2005-replication 1 Sql Server 2005 Replication vaibhav 2009-11-21T13:14:02Z 2009-11-25T17:57:54Z <p>I am developing a web portal in Asp.Net. Primary target users will be of India Only. But in future I may target overseas users also. I want to know if I should use Sql Server Replication or not. Should I concern about "Replication" at initial stage or can I use it at later stages. Thanks in advance.</p> http://stackoverflow.com/questions/423943/postgresql-replication-strategies 4 PostgreSQL replication strategies bismailov 2009-01-08T11:21:50Z 2009-11-25T12:23:48Z <p>Right now we are using PostgreSQL 8.3 (on Linux) as a database backend to our Ruby on Rails web application.</p> <p>Considering that on PostgreSQL database we actively use row level blocking and PL/PGSQL, what can we employ to secure our data -- I mean tools, packages, scripts, strategies -- to successfully replicate the database and build multi-master combination?</p> <p>I will appreciate master-slave suggestions as well.</p> <p>For example, if I put several application servers running Apache/Ruby to achieve higher performance and at the end deploy several database servers, is there any way to build multi-master replication in PostgreSQL?</p> <p>Right now we use PostgreSQL WAL mechanism to backup data to file system.</p> <p>Thanks a lot.</p> http://stackoverflow.com/questions/1576603/is-it-possible-to-do-n-master-1-slave-replication-with-mysql 0 Is it possible to do N-master => 1-slave replication with MySQL ? Amadeus45 2009-10-16T07:19:50Z 2009-11-25T11:47:22Z <p>Hello, </p> <p>I want to make a dedicated SLAVE machine for data replication of three database on three different servers. In other words, I want to do Multiple Master => SIngle Slave replication.</p> <p>Is there any way to do this, as simple as it can be ?</p> <p>Thanks !</p> http://stackoverflow.com/questions/787489/sql-server-2005-replication 6 SQL Server 2005 Replication DBAndrew 2009-04-24T20:36:47Z 2009-11-24T13:37:25Z <p>Environment: SQL Server 2005 SP2 (9.0.3077) Transactional Publications (Production and Beta)</p> <p>I have a situation where I have two different Replication Publications setup that use some of the same Articles. Each of these Publications feeds a subscriber on a different machine. One of these shared Articles is a table. At a regular time interval many of the records in this table become aged and no longer needed. At this time a stored procedure that deletes records is called. </p> <p>To save on resources and improve latency times to the subscribers I have set the replicate property on this stored procedure to “Execution of the stored procedure” instead of the default “Stored procedure definition only”. This way when the stored procedure deletes 2,000,000+ records these don’t replicate down to the subscribers. Instead the execution of the stored procedure is replicated and the same replicated stored procedure on the subscribers is executed and it deletes the same 2,000,000+ rows. </p> <p>The problem I’m having is with my second publication. I didn’t need this type of behavior so I left the article property on the stored procedure set to “Stored procedure definition only” and was expecting replication to remove the rows at the other subscriber but it wasn’t. The table at the subscriber just kept gaining records. So to fix it I set the Article Property to "Execution..." and called it good. Which is probably the best solution so beta matches production, but it still feels like a kludge as the publication properties should work independently of each other.</p> <p>Question: Why does the “Execution of the stored procedure” article property take precedence and get applied to the other publication even though it is set to “Stored procedure definition only” in the other publication?</p> http://stackoverflow.com/questions/1755881/non-replicated-column-still-trigger-replication 0 non-replicated column still trigger replication Eli Perpinyal 2009-11-18T13:14:39Z 2009-11-18T15:11:42Z <p>I have a few columns in a table that are added to my publication articles. When a change on a column that is not included in replication occurs, it still seems to update the msrepl_tran_version which i assume still assigns the row for replication. Is this how SQL-Server works? Is there a way to tell sql only to relicate rows when a colum that is included in the articles is changed and not when a non-replicated column is changed?</p> http://stackoverflow.com/questions/1746848/synchronizing-intranet-and-web-data 0 Synchronizing intranet and web data cbp 2009-11-17T05:47:38Z 2009-11-17T07:24:07Z <p>I am just getting started breaking a .NET application and its SQL Server database into two systems - an intranet and a public website.</p> <p>The various database tables will need to be synchronised between the two databases in different ways, for example:</p> <ul> <li>Moving from web to intranet, with the intranet data becoming read-only</li> <li>Moving from intranet to web, with the web data becoming read-only</li> <li>Tables that need to be synchronised and are read/write on both the intranet and web databases.</li> </ul> <p>Some of the synchronisation needs to occur relatively quickly with minimal lag, possibly with some type of transaction locking to ensure repeatable reads etc. Other times it doesn't matter if there is a delay between synchronisation.</p> <p>I am not quite sure where to start with all this, as there seems to be many different ways of achieving this. Which technologies and strategies should I be looking at?</p> <p>Any tips?</p> http://stackoverflow.com/questions/1746279/does-sql-server-replication-support-this-scenario 0 Does SQL Server replication support this scenario? chaowman 2009-11-17T02:47:08Z 2009-11-17T03:19:57Z <p>Suppose I have central site and branch sites. Branch sites also have its own distribution center; </p> <p>Northern center, Southern center, Western center, and Eastern center.</p> <p>I would like all information replicate among its own region. But only center site that should have all data in all regions.</p> <p>Data inserted in each region can be updated only in that region.</p> <p>Please advice me whether SQL Server supports this scenario, and how to configure it.</p> http://stackoverflow.com/questions/1059411/how-do-i-create-control-tables-in-db2-udb-for-setting-up-new-replication 0 How do I create control tables in DB2 UDB for setting up new replication unknown (google) 2009-06-29T17:12:04Z 2009-11-14T03:00:04Z <p>How do I create control tables in DB2 UDB for setting up new replication</p> http://stackoverflow.com/questions/1724322/where-is-the-log-file-located-when-verbose-history-logging-is-turned-on-for-sql-2 0 Where is the log file located when verbose history logging is turned on for SQL 2005 replication? unknown (google) 2009-11-12T18:23:02Z 2009-11-13T15:18:40Z <p>Hello,</p> <p>I keep getting the The merge process was unable to create a new generation at the 'Subscriber'. Troubleshoot by restarting the synchronization with verbose history logging and specify an output file to which to write. (Source: MSSQL_REPL, Error number: MSSQL_REPL-2147200994) Get help: <a href="http://help/MSSQL%5FREPL-2147200994" rel="nofollow">http://help/MSSQL%5FREPL-2147200994</a> message. I went ahead and followed the advice and from the Replication monitor->Agent Profile I changed the profile to Verbose history. Now, where is this file located? There are not properties in Management studion to sepeify the location. Thank you. </p> http://stackoverflow.com/questions/1728865/sql-server-2005-8-replication-transaction-id 0 SQL Server 2005/8 Replication Transaction ID Mike Tours 2009-11-13T12:13:13Z 2009-11-13T13:54:24Z <p>The scenario I have the scenario where I'm using transactional replication to replicate multiple SQL Server 2005 databases (same instance) into a single remote database (different instance on a seperate physical machine).</p> <p>I am then performing some processing on the replicated data for reporting purposes. I'm using table level triggers to identify changes which actions my post processing code.</p> <p>Up to this point everything is fine. </p> <p>However, what I'd like to know is, where certain tables are created, updated or deleted in the same transaction, is it possible to identify some sort of transaction ID from replication (or anywhere) so then I don't perform the same post processing multiple times for a single transaction.</p> <p>Basic Example: I have a TUser Table and TAddress table. If I was to create both in a single transaction, they would be replicated across in a single transaction too. However, there would be two triggers fired in the replicated database - which at present cauese my post processing code to be run twice. What I'd really like to identify is that these two changes arrived in the replicated in the same transaction.</p> <p>Is this possible in any way? Does an identifier as I've describe exist and is it accessible?</p> http://stackoverflow.com/questions/1623367/what-are-your-opinions-of-drbd-heartbeat-for-replication-and-failover-for-the-fir 0 What are your opinions of DRBD/Heartbeat for replication and failover for the Firebird RDBMS? Brian Hammond 2009-10-26T06:31:31Z 2009-11-12T21:00:07Z <p>I am researching the possibility of using Firebird for a project. </p> <p>However, one potential problem is replication and failover, or rather, lack of a (subjective) "good" solution. There are several potential solutions listed in the Firebird FAQ but they are either 1) Windows-centric; 2) horribly outdated; 3) commerical; or 4) not full-featured.</p> <p>The only potential option I see is FIBRE and that looks 1) immature; 2) potentially dead; and 3) not full-featured.</p> <p>I've learned about DRBD and Heartbeat and these solutions look promising. I am looking for your feedback should you already have 1) setup a replicated Firebird configuration; and/or 2) used DRBD with Firebird.</p> <p>Any "gotchas", recommendations, tips, etc.?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1366278/mysql-ring-replication-behind-nat 0 MySQL ring replication behind NAT Rytis 2009-09-02T07:26:36Z 2009-11-11T15:27:48Z <p>I am considering switching from Firebird where I'm using a hand-built replication to MySQL and its integrated replication solution. I have 4 departments with sporadic network connections. Each one has to have its copy of the database, and has to be able to update database, so I decided that using ring replication method (A->B, B->C, C->D, D->A) would be the best (correct me if I'm wrong!).</p> <p>However, while 3 of the departments have a public connection to the outside world, one is behind NAT and I do not have any chance to forward ports - so basically, I can only connect to outside world, but cannot accept incoming connections. Is there any way to set up ring type replication with this limitation?</p> http://stackoverflow.com/questions/1706852/backing-up-data-between-sql-express-2005-and-sql-server-2008-standard-edition 0 Backing up data between SQL Express 2005 and SQL Server 2008 Standard Edition IrfanIdrees 2009-11-10T10:05:57Z 2009-11-10T15:42:27Z <p>Hi,</p> <p>I am developing an application which needs to backup data between SQL Express 2005 and SQL Server 2008. My client runs with an installation of SQL express 2005 and needs to periodically back up data to a server database running on SQL Server 2008. The client db also receives some new data from server and needs to update itself. The question is HOW DO I DO IT ? plz help</p> http://stackoverflow.com/questions/566264/ehcache-hibernate-and-rmi-replication-with-large-number-of-entities 6 Ehcache / Hibernate and RMI replication with large number of entities Lionel 2009-02-19T17:12:56Z 2009-11-10T10:02:28Z <p>Hi All, </p> <p>I'm currently investigating how to use the RMI distribution option in ehcache. I've configured properly ehcache.xml and replication seems to work fine. However I've 2 questions: </p> <p>-> It seems ehcache/ hibernate creates 1 cache per Entity. This is fine, however when replication is in place it create 1 thread / cache to replicate. Is this the intended behavious ? As our domain is big, it creates about 300 threads, which seems to me really big </p> <p>-> Another nasty consequence is that the heartbeat messagre seems to aggregate all of those cache names. From what I saw the message should fit in 1500 bytes, which it does not, which leads to this message in my logs: Heartbeat is not working. Configure fewer caches for replication. Size is 1747 but should be no greater than1500. Any idea on how this could be changed ? </p> <p>Thanks a lot for your help </p> http://stackoverflow.com/questions/1126459/are-there-any-gotchas-when-using-hilo-if-you-need-to-use-replication-later 1 Are there any gotchas when using HiLo if you need to use replication later? joshlrogers 2009-07-14T16:13:10Z 2009-11-10T10:00:03Z <p>Currently we only use one database server, and that should be all we need for quite some time. However if I was to convert the database to use HiLo for a POID strategy is there anything I can do now that would make sure I don't have problems with replication later?</p> <p>Is HiLo even compatible with replication? I am actually having quite a hard time finding information in regards to this strategy.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1018852/can-i-use-failover-partner-in-my-sql-connection-string-without-mirroring 1 Can I use Failover Partner in my SQL connection string without mirroring? Gregor S. 2009-06-19T16:24:13Z 2009-11-10T08:41:44Z <p>I admit I'm a bit of a cheapskate, but I don't want to spring for the three servers needed to get automatic failover for SQL Server via Mirroring, especially since one of the three would do nothing other than be a witness server.</p> <p>If I set up normal SQL replication (snapshot, say) from primary server to backup server, can I just set my connection string in my ASP.NET app to include 'Failover Partner=backup'? It seems like ADO.NET on the client should just try the primary, and then failover to the backup if the primary wasn't available.</p> <p>Or does that only work with mirroring?</p> <p>(I like the idea of mirroring, but if you don't want to pay for the witness server, you have to manually switch the backup server to be the primary.)</p> <p>Thanks!</p> http://stackoverflow.com/questions/1702994/sql-server-replication-cross-database-queries-constraints 0 SQL Server Replication (cross-database queries & constraints) Chris Klepeis 2009-11-09T18:54:02Z 2009-11-09T19:56:01Z <p>We want to replicate data from one database to several others (on another server). Would it make sense to replicate these tables to a shared database on the other server and have our cross-database queries reference the shared database... or would it make more sense to replicate out to each individual database on the other server? Would cross database joins pose a performance hit? Would cross-database constraints work as expected?</p> <p>Replicating once to a shared database would help replication performance... I'm trying to evaluate whether or not any performance hit as a result of cross-database queries or constraints would be worth it.</p> <p>Edit: It looks like cross database constraints are not possible in sql server? If this is true then we would have to replicate to each database</p> http://stackoverflow.com/questions/1702437/sql-server-2008-replication-vs-manual-database-updates 0 SQL Server 2008 Replication vs Manual Database Updates Chris Klepeis 2009-11-09T17:18:21Z 2009-11-09T18:50:16Z <p>Our scenario:</p> <p>We have a main database that stores company-wide information. We have several retail locations which have their own databases they work off of. These locations need to use information in the company-wide database, and I do not want our main application to run cross database queries because if the main database has issues (locks or otherwise), I do not want it to cause the application to cease to function.</p> <p>That being said, we're considering 2 things:</p> <ol> <li>Replicate the data</li> <li>Run an automated script to update the tables in each database on our own</li> </ol> <p>I'm leaning towards replication, but I have to admit, I've never done it before (we do replicate data though, I just haven't handled it). I've been told that replication can be pretty intensive for large tables. Any thoughts, suggestions, or good articles about this?</p> http://stackoverflow.com/questions/1422697/find-most-recent-sql-server-database-activity 0 Find most recent SQL Server database activity rwmnau 2009-09-14T16:48:22Z 2009-11-09T15:21:29Z <p>Data from another system is replicated into a SQL Server 2005 database in real-time (during the day, it's hundreds of transactions/second) using Goldengate. I'd like to be able to tell if there's been a transaction recently, which will tell me if replication is currently happening. Even in the off-hours, I can expect a transaction every few minutes, though I won't know which of the 400 tables it will go into.</p> <p>Here's my current process:</p> <ol> <li>IUD trigger on most popular replicated table</li> <li>Updates date in "Sync Notification" table every time there's any activity on that table</li> <li>SQL Agent job runs every few minutes and compares this date with GETDATE(). If it's been too long, it emails me.</li> </ol> <p>This works for the most part, but I get false positives if there's activity in other tables, but not the monitored one, which can happen overnight.</p> <p>Any other suggestions short of adding this same trigger to every table in the database? If I do add the triggers, how to I prevent deadlocks and contention on the "Sync notification" table? Since I don't care about the most recent date being exact during high-contention periods, is there a way I can have SQL try to update the date but just skip it if some other process has locked it?</p> <p>The only "application-level" choice I have is to TELNET to the Goldengate monitor and ask for the replica lag, then screen scrape the results. I'm open to that, but I'd like to do something SQL-side if it's more feasible.</p> http://stackoverflow.com/questions/1680008/synchronize-online-sql-server-2008-databases 0 Synchronize online SQL Server 2008 databases nihi_l_ist 2009-11-05T11:38:11Z 2009-11-06T02:14:20Z <p>As I found this can be done with merge replication in SQL Server. But I have only one main server and many small ones(with Express edition installed on them). </p> <p>Let me explain:</p> <p>There is the main (<em>big</em>) office with SQL Server Standard edition installed on its server. And there are many offices across the country with with their own small servers, because they have no constant connect to the main <em>big</em> server. Tho there are several computers in local offices to work with their local server. So I've decided to install Express on locals and Standard on <em>big</em> and somehow set synchronization solution between all of them, so that the database can be changed on <em>big</em> and locals seperately and the changes and conflicts can be handled by some rule.</p> <p>Can you suggest me the right solution if im wrong? or correct me.. I think I can't do all of this with Express editions installed on locals :(</p> <p>Thank you.</p>