13.29 SDO_GEOR_UTL.setWriteBlockMemSize

Format

SDO_GEOR_UTL.setWriteBlockMemSize(
     memBlockSize  IN NUMBER);

Description

Sets the size of the GeoRaster internal data block for read/write operations.

Parameters

memBlockSize

Number of bytes that can be used for the GeoRaster internal data block for read/write operations. The default value is 65536 (64 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.setWriteBlockMemSize(1000000);

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

EXECUTE sdo_geor_utl.setWriteBlockMemSize();