Reputation: 5
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?
Upvotes: 0
Views: 260
Reputation: 17643
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?
Upvotes: 4