Example: Create Tables with ST_GEOMETRY Data Type Columns - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
ft:locale
en-US
ft:lastEdition
2024-12-11
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

This example creates a table with an ST_GEOMETRY column that is non-LOB.

CREATE TABLE geoTable1(id INTEGER,
                       geo1 ST_GEOMETRY(64000));

This example creates a table with the following types of ST_GEOMETRY columns: non-LOB, LOB, and LOB with a specified inline length.

CREATE TABLE geoTable2(id INTEGER,
                       geo1 ST_GEOMETRY(100),
                       geo2 ST_GEOMETRY,
                       geo3 ST_GEOMETRY INLINE LENGTH 30000);

This example uses a different syntax to create the same structure as geoTable2.

CREATE TABLE geoTable3(id INTEGER,
                       geo1 ST_GEOMETRY(100) INLINE LENGTH 100,
                       geo2 ST_GEOMETRY,
                       geo3 ST_GEOMETRY INLINE LENGTH 30000);

This example creates a table with the following types of ST_GEOMETRY columns: non-LOB and LOB with specified inline lengths.

CREATE TABLE geoTable4(id INTEGER,
                       geo1 ST_GEOMETRY(30000) INLINE LENGTH 30000,
                       geo2 ST_GEOMETRY INLINE LENGTH 100);

This example creates a table with an ST_GEOMETRY column that is an LOB with a specified inline length.

CREATE TABLE geoTable5(id INTEGER,
                       geo1 ST_GEOMETRY(64000) INLINE LENGTH 100);