本文介绍了如何在sqlserver中使用两个不同的服务器执行1个存储过程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





在我的项目架构中,我们将两个服务器node1和node2组合起来。 node1我们正在物理表和node2上执行所有CRUD操作我们只执行select语句。



但是我的存储过程具有以下结构



插入

|

选择

|

更新



如何重写我的存储过程以执行插入和更新为node1并从node2中选择。



感谢您提前,仍需要任何澄清ping我。



我尝试过:



i得到了我的架构师的一个建议,用.net语言函数重新编写代码。

解决方案

Hi,

In my project architecture, we heave two servers node1 and node2. node1 we are performing all CRUD operations on physical tables and node2 we are performing only select statements.

But my stored procedures having below structure

insert
|
select
|
update

How can i rewrite my stored procedure to executing insert and update as node1 and select from node2.

Thanks for advance, still need any clarification ping me.

What I have tried:

i got only one suggestion from my Architect , re write the code using .net language functions.

解决方案


这篇关于如何在sqlserver中使用两个不同的服务器执行1个存储过程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 04:57