如何使用两台服务器更新 postgresql 中的列?
我有一个包含许多字段的本地表。我需要仅更新一列的不同服务器(相同数据库结构)上的值。我该怎么做?
I have a local table with many fields. I need to update the values on a different server(same db structure) just for one column. How can I do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你尝试过dblink吗?
have yout tried dblink?
我能想到的唯一方法是返回结果中更改的列并在两台服务器上应用更改。
假设两台服务器上的两个表中都有从 1 到 100 的行。该语句更新您的行,并使用您也可以在其他服务器上执行的更新语句生成单个字符串结果。
PS:未经测试,但应该可以与较小的语法修复一起使用。
The only way I can think of is to return the changed column in the results and to apply the changes on both servers.
Assume, you have rows from 1 to 100 in both tables on both servers. This statement updates your rows, and produces a single string result with update statements you can do on the other server also.
PS: Untested, but should work with minor syntax fixes.