Initiates population of all INMEMORY objects that have a priority greater than or equal to the specified priority, and sets a timeout interval within which population must occur.
Use DBMS_INMEMORY_ADMIN.SET_SGA_PERCENTAGE to modify the maximum In-Memory size for your database.
Syntax
DBMS_INMEMORY_ADMIN.SET_SGA_PERCENTAGE (
sga_percentage IN NUMBER);
Parameter
Description
sga_percentage
This specifies a value for the maximum In-Memory size for your Autonomous Database. The supplied sga_percentage value must be in the range of 0 and 70.
This parameter is mandatory.
Usage Note
To run DBMS_INMEMORY_ADMIN.SET_SGA_PERCENTAGE you must be logged in as the ADMIN user or have the EXECUTE privilege on DBMS_INMEMORY_ADMIN.
Example
BEGIN
DBMS_INMEMORY_ADMIN.SET_SGA_PERCENTAGE(60);
END;
/