Hi,
I have just finished upgrading 11g to 19c.
When I do query "
SELECT name,value,display_value,isdefault,isbasic FROM V$PARAMETER WHERE name IN ('memory_target', 'sga_target', 'pga_aggregate_target');
", the result is as follows :
SGA_TARGET = 0
MEMORY_TARGET = 0
PGA_AGGREGATE_TARGET = 30 GB.
What can I tell about these memory values ?
Is this telling me that AMM is being used ? What I know, for manual management, all values must be 0.
If this is the configuration for the pluggable db, how do I log in into root container ?
which configuration is used, the pluggable db or the root container ?
thanks
You'll need to be on the root to see the true values for some parameters, eg
--
-- in pluggable
--
SQL> show parameter sga
NAME TYPE VALUE
------------------------------------ ----------- ---------------------
allow_group_access_to_sga boolean FALSE
lock_sga boolean FALSE
pre_page_sga boolean TRUE
sga_max_size big integer 3G
sga_min_size big integer 0
sga_target big integer 0
unified_audit_sga_queue_size integer 1048576
--
-- in root
--
SQL> conn / as sysdba
Connected.
SQL> show parameter sga
NAME TYPE VALUE
------------------------------------ ----------- ---------------------
allow_group_access_to_sga boolean FALSE
lock_sga boolean FALSE
pre_page_sga boolean TRUE
sga_max_size big integer 3G
sga_min_size big integer 0
sga_target big integer 3G <<==============
unified_audit_sga_queue_size integer 1048576
Then the normal rules apply, ie, is memory_target set, is sga_target set, etc