1) Either change the O7_DICTIONARY_ACCESSIBILITY to the opposite that is currently in the init.ora and bounce the database. The change can be verified by selecting from a SYS table as the splex user.
OR
2) If this parameter is set and you need to access objects in the SYS schema, then you must be granted explicit object privilege. See below script to grant direct access to the SYS objects for the splex user. The script below assumes the shareplex schema is called splex
connect sys
spool foo.sql
select grant select on ||table_name|| to splex; from dba_tables where owner=SYS;
spool off
@ foo.sql
3) To verify fix login as splex and select from a SYS table "select * from sys.type$;"
© 2025 Quest Software Inc. ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center