Search notes:

Oracle SQL Plan operation DATA LINK

Find a random table with DATA LINK sharing:
select
   tab.table_name
from
    dba_objects obj   join
    dba_tables  tab on obj.object_name = tab.table_name
where
   obj.sharing = 'DATA LINK';
--
-- SYSTEM_PRIVILEGE_MAP
-- TABLE_PRIVILEGE_MAP
-- USER_PRIVILEGE_MAP
-- STMT_AUDIT_OPTION_MAP
-- …
Then find the plan for selecting from this table from a PDB:
explain plan for
select * from system_privilege_map;

select * from dbms_xplan.display(format=>'basic');
--
-- -------------------------------------------------
-- | Id  | Operation        | Name                 |
-- -------------------------------------------------
-- |   0 | SELECT STATEMENT |                      |
-- |   1 |  DATA LINK FULL  | SYSTEM_PRIVILEGE_MAP |
-- -------------------------------------------------

See also

EXTENDED DATA LINK FULL
Plan operations

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1743506314, '3.142.50.218', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/SQL/statement/execution/plan/operations/data-link(66): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78