一次更新所有schema中的表数据

发布于 2024-12-19 15:46:21 字数 232 浏览 1 评论 0原文

我正在使用 oracle 数据库。假设有五个不同的schema,所有schema中有一个名为model_num的表,并且假设我正在将一些行更新为model_num架构之一中的 表。那么,一旦我在一个模式中更新它,是否可以从所有模式中更新model_num表?

谁能帮我怎么做?

I am working with oracle database. suppose there are five different schema,there is table called model_num in all the schema, and suppose i am updating some rows to model_num table in one of the schema. so is it possible to update model_num table from all the schemas once i update it in one schema?

can anyone help me how to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

粉红×色少女 2024-12-26 15:46:21

如果 model_num 表包含相同的信息,为什么您不只是:

  1. 在架构中创建一个表,并在其他架构上授予选择权限?更新您的单个表,其他模式将看到所有信息。

  2. 在一个架构中创建一个表,并根据该表为其他架构创建视图?

如果您拥有几乎相同的信息,您可以采取其他技巧,但我们需要您提供更多信息。你们的桌子有何不同?

If the model_num tables contain the same information, why you don't just:

  1. Create one table in a schema, grant select on other schemas? update your single table and other shemas will see all informations.

  2. Create one table in a schema and views based on that table for the other schemas?

If you have almost the same information, you can do other tricks, but we need more information from you. How your tables differ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文