DBMS_INMEMORY_ADMIN Package
The DBMS_INMEMORY_ADMIN
package enables you to manage the In-Memory area and In-Memory FastStart.
- Summary of DBMS_INMEMORY_ADMIN Subprograms
This table summarizes the subprograms included in theDBMS_INMEMORY_ADMIN
package.
Parent topic: Autonomous Database Supplied Package Reference
Summary of DBMS_INMEMORY_ADMIN Subprograms
This table summarizes the subprograms included in the DBMS_INMEMORY_ADMIN
package.
Subprogram | Description |
---|---|
This procedure obtains the current values for parameters that control Automatic In-Memory. |
|
The procedure customizes the execution environment of Automatic In-Memory. |
|
This procedure disables the In-Memory FastStart (IM FastStart) feature. |
|
This procedure enables IM FastStart and assigns a tablespace. |
|
This procedure moves all IM FastStart data and metadata from the existing tablespace to the specified new tablespace. |
|
This function returns the name of the tablespace that is currently designated for IM FastStart. |
|
This procedure captures the 20 most frequently accessed (“hottest”) expressions in the database in the specified time interval. |
|
This procedure signals the end of the current expression capture window. |
|
This procedure drops all |
|
This procedure returns the current capture state of the expression capture window and the timestamp of the most recent modification. |
|
This procedure signals the beginning of an expression capture window. |
|
This procedure forces the population of expressions captured in the latest invocation of |
|
Initiates population of all |
|
This procedure modifies the maximum In-Memory size for your database. |
- SET_SGA_PERCENTAGE Procedure
UseDBMS_INMEMORY_ADMIN.SET_SGA_PERCENTAGE
to modify the maximum In-Memory size for your database.
Parent topic: DBMS_INMEMORY_ADMIN Package
SET_SGA_PERCENTAGE Procedure
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 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;
/
Parent topic: Summary of DBMS_INMEMORY_ADMIN Subprograms