13.27 SDO_GEOR_UTL.setReadBlockMemSize

Format

SDO_GEOR_UTL.setReadBlockMemSize(
     memBlockSize  IN NUMBER DEFAULT 32768);

Description

Sets the size of the GeoRaster internal data block for read-only operations.

Parameters

memBlockSize

Number of bytes that can be used for the GeoRaster internal data block for read-only operations. The default value is 32768 (32 KB).

Usage Notes

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

Examples

The following example sets the memBlockSize value to 1 million bytes (approximately 1 MB).

EXECUTE sdo_geor_utl.setReadBlockMemSize(1000000);

The following example sets the memBlockSize value to the default value (32 KB).

EXECUTE sdo_geor_utl.setReadBlockMemSize();