13.28 SDO_GEOR_UTL.setMaxMemSize

Format

SDO_GEOR_UTL.setMaxMemSize(
     maxMemSize  IN NUMBER DEFAULT 16777216);

Description

Sets the upper limit size of the memory that can be used for managing memory using the GeoRaster buffer system.

Parameters

maxMemSize

Number of bytes that can be used for managing memory using the GeoRaster buffer system. The default value is 16777216 (16 MB).

Usage Notes

Managing Memory for GeoRaster Buffering provides conceptual and usage information, including explanations of the relevant parameters.

Examples

The following example sets the maxMemSize value to 100 million bytes (approximately 100 MB).

EXECUTE sdo_geor_utl.setMaxMemSize(100000000);

The following example sets the maxMemSize value to the default size (16 MB).

EXECUTE sdo_geor_utl.setMaxMemSize();