You should be able to just post the parameters online.
Try this query:
column name format a50
column value format a30
select name, to_char(value, '999,999,999,999') bytes from v$parameter where type=6 order by 1;
This query will just show the memory parameters.




Reply With Quote