Search notes:

SQLPATH - cpu

cpu.sql shows CPU related information found in the init parameters and v$osstat.
select 'Init parameters' key   , null val         from dual                                         union all
select '  ' || name     || ':' , to_number(value) from v$parameter where name      like 'cpu%count' union all
select 'OS stat'               , null             from dual                                         union all
select '  ' || stat_name || ':', value            from v$osstat    where stat_name like 'NUM_CPU%';
Github repository Oracle-SQLPATH, path: /cpu.sql

See also

Oracle: files for ORACLE_PATH / SQLPATH

Index