OCP CBT Question 544

Please solve the following question.

You are managing an Oracle 19c database where Automatic Memory Management (AMM) is enabled. You observe high pga_in_mem_size and pga_used_size in V$PGASTAT and occasional "out of memory" errors for large sorts. You check the memory parameters:You also notice that the operating system has 32GB of physical RAM. What is the most effective approach to mitigate the "out of memory" errors for PGA while ensuring overall memory stability?

Current Memory ParameterssqlSHOW PARAMETER memory_target;-- memory_target = 20GSHOW PARAMETER memory_max_target;-- memory_max_target = 25GSHOW PARAMETER sga_target;-- sga_target = 0 (default, meaning AMM manages it)SHOW PARAMETER pga_aggregate_target;-- pga_aggregate_target = 0 (default, meaning AMM manages it)Assume the _AM_MEM_USE_THRESHOLD hidden parameter is at its default value (90%).