Is there a way to check the value of an AWS RDS Oracle Database hidden parameter value? The following approaches do not work.
1.
SQL> show parameter "_high_priority_processes"
SQL>
SQL> select value from v$parameter where name = '_high_priority_processes';
no rows selected
Connected as the RDS master account.
select
v.ksppstvl
from sys.x$ksppi i
join sys.x$ksppcv v
on i.indx = v.indx
where i.ksppinm = '_high_priority_processes';
join sys.x$ksppcv v
*
ERROR at line 4:
ORA-00942: table or view does not exist
These approaches do work if the parameter has been set to a non-default value.
Checking the value of a hidden parameter in an AWS RDS Oracle Database can indeed be a challenge, since the RDS environment is... restricted: in AWS RDS, you don't have the same level of access as in a traditional Oracle database, which limits your ability to query certain system views and tables.
All I can find is this article which mentions:
So:
a/ the
STATStable might be a better candidateb/ but permissions issue might still be a problem