Hi guys,
It is about Oracle 12c R2 Multitenant option.
I understand that I can use the CONTAINERS clause in an UPDATE statement to update a table in a specific container using WHERE CON_ID=<con_id>... and if you omit this where condition, it will update the table in the current container.
SQL> show user
USER is "C##USER1"
SQL> update containers(app_users) set user_name='updated' where con_id=3;
1 row updated.
My question is: is there a way to update a table in ALL the pdbs?
Thanks in advance!