Replicate Database - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T03:00:53Zhttp://stackoverflow.com/feeds/question/532319http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/532319/replicate-database0Replicate DatabaseVikas Kumar2009-02-10T13:29:22Z2009-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#5323280Answer by Can Berk Güder for Replicate DatabaseCan Berk Güder2009-02-10T13:32:47Z2009-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#5323331Answer by Mitch Wheat for Replicate DatabaseMitch Wheat2009-02-10T13:33:52Z2009-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>