Check the total physical RAm on the server by running
Result would look something like this:
lsattr -El sys0 -a realmem
> lsattr -El sys0 -a realmem realmem 25165824 Amount of usable physical memory in Kbytes FalseThe go through each end every database running on the server and do the following steps:
- Login to sqlplus
- Check MEMORY_TARGET parameter:
SQL>SHOW PARAMETER MEMORY_TARGET
If value is not 0, then use it, but if it is 0, then use sum of values of SGA and PGASQL>SHOW PARAMETER SGA_TARGET
andSQL>SHOW PARAMETER PGA_AGGREGATE_TARGET
- After adding up all the values for each and every running database, calculate the percentage currently taken up. If it is no more than 50-70%, no change needed.
No comments:
Post a Comment