When we grant a system ANY privilege such as SELECT ANY TABLE, DROP ANY TABLE, and so on to a user, that user still cannot access objects in the SYS schema or Data Dictionary tables:




SQL*Plus: Release 10.1.0.4.2 - Production on Tue Jan 9 10:38:31 2024
SQL> show user
USER is "SYS"

SQL> create table sys.tb as select * from dual;
Table...