一次更新所有schema中的表数据
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
model_num
表包含相同的信息,为什么您不只是:在架构中创建一个表,并在其他架构上授予选择权限?更新您的单个表,其他模式将看到所有信息。
在一个架构中创建一个表,并根据该表为其他架构创建视图?
如果您拥有几乎相同的信息,您可以采取其他技巧,但我们需要您提供更多信息。你们的桌子有何不同?
If the
model_num
tables contain the same information, why you don't just:Create one table in a schema, grant select on other schemas? update your single table and other shemas will see all informations.
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?