Replicate Database - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T03:00:53Z http://stackoverflow.com/feeds/question/532319 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/532319/replicate-database 0 Replicate Database Vikas Kumar 2009-02-10T13:29:22Z 2009-02-10T13:33:52Z <p>I want to execute proc of database 'A' from database 'B'. My situation is this that i have a database 'A' and a database 'B'. I want that when a proc is executed on database 'A' it will also execute on database 'B'. This is because whole structure is same on both database but some procs are different in database 'B'. I want to match result effected by both procs in DB 'A' and DB 'B'. Is there is any solution for this problem. Please help me. Thanks in Advance.</p> http://stackoverflow.com/questions/532319/replicate-database/532328#532328 0 Answer by Can Berk Güder for Replicate Database Can Berk Güder 2009-02-10T13:32:47Z 2009-02-10T13:32:47Z <p>First of all, what DBMS are you using?</p> <p>MySQL replicates stored procedures when using DB replication, so basic MySQL replication should just work.</p> http://stackoverflow.com/questions/532319/replicate-database/532333#532333 1 Answer by Mitch Wheat for Replicate Database Mitch Wheat 2009-02-10T13:33:52Z 2009-02-10T13:33:52Z <p>If you are using SQL Server transactional replication, it is possible: <a href="http://msdn.microsoft.com/en-us/library/ms152754(SQL.90).aspx" rel="nofollow">Publishing Stored Procedure Execution in Transactional Replication</a> and <a href="http://www.sqlservercentral.com/articles/Replication/61332/" rel="nofollow">Replicate Stored Procedure Execution</a></p>