SDO_UTIL.DISABLE_VECTORTILE_CACHE

Format

SDO_UTIL.DISABLE_VECTORTILE_CACHE(
  table_name     IN VARCHAR2,
  geom_col_name  IN VARCHAR2
);

Description

Disables a vector tile cache.

Parameters

table_name

Name of the table containing the information used to build the vector tiles (a geometry column and zero or more attribute columns).

geom_col_name

Name of the SDO_GEOMETRY type column in table_name which is used to build vector tiles.

Usage Notes

Note the following when calling SDO_UTIL.DISABLE_VECTORTILE_CACHE:

Examples

The following example calls SDO_UTIL.DISABLE_VECTORTILE_CACHE to disable cache on the counties table.

-- Disable the cache on the COUNTIES table
EXEC SDO_UTIL.DISABLE_VECTORTILE_CACHE('counties', 'geom');