vote up 0 vote down star

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.

flag
It might help if you state the DBMS you're using! – Mr Potato Head Feb 10 at 13:31
It will depend on your database: SQL Server , Oracle ...? – Mitch Wheat Feb 10 at 13:31

2 Answers

vote up 1 vote down

If you are using SQL Server transactional replication, it is possible: Publishing Stored Procedure Execution in Transactional Replication and Replicate Stored Procedure Execution

link|flag
I am using sql server 2005.I hv done transactional replication and all procs are replicated but when i do changes in publisher ('A') DB it only reflects the changes of table in DB 'B',bt i want that the changes should hit DB 'B' using 'B' proc.How to publish stored proc execution in sql server 2005. – Vikas Kumar Feb 11 at 5:01
I need both DB execute their own procs when updation is done in DB 'A'. – Vikas Kumar Feb 11 at 6:06
vote up 0 vote down

First of all, what DBMS are you using?

MySQL replicates stored procedures when using DB replication, so basic MySQL replication should just work.

link|flag
I am using sql server 2005.Is it possible replication of stored procedures in sql server 2005?I have done replication and all procs are replicated but when i do changes in publisher ('A') DB it only reflects the changes of table in DB 'B', bt i want that the changes should hit DB 'B' using 'B' proc. – Vikas Kumar Feb 11 at 5:00
I need both DB execute their own procs when updation is done in DB 'A'. – Vikas Kumar Feb 11 at 6:06
Oh, I'm not sure, I never used MSSQL. – Can Berk Güder Feb 11 at 9:08
Its ok frnd. BTW thanks for your reply... – Vikas Kumar Feb 11 at 12:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.