SOLVED

ORA-04036: PGA Memory Used By The Instance Exceeds PGA_AGGREGATE_LIMIT

Asked by OracleDba15 viewsoracle
1
2
3
ORA-04036: PGA Memory Used By The Instance Exceeds PGA_AGGREGATE_LIMIT

ORA-04036: PGA Memory Used By The Instance Exceeds PGA_AGGREGATE_LIMIT
#oracle#error

Solutions(1)

Accepted Solution
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
First thing you need to check , why the session is using lot of PGA.

Then follow any of the below.

Set

PGA_AGGREGATE_LIMIT to 0

, which removes the limit on PGA usage per session.

alter system set pga_aggregate_limit=0 scope=both;

Else increase the size of PGA_AGGREGATE_LIMIT to a higher value.

alter system set pga_aggregate_limit=3072M scope=both;

Hope it Helps!
OracleDba

Post Your Solution