Example: ALC Using the LZCOMP Function - 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

In this example, the NULLs in the Description column are compressed. The non-null UNICODE values in the Description column are compressed using the Teradata-supplied LZCOMP function. The LZDECOMP function uncompresses the values compressed by LZCOMP.

CREATE MULTISET TABLE Pendants
   (ItemNo INTEGER,
    Gem CHAR(10) UPPERCASE CHARACTER SET UNICODE,
    Description VARCHAR(1000) CHARACTER SET UNICODE
       COMPRESS USING TD_SYSFNLIB.LZCOMP
       DECOMPRESS USING TD_SYSFNLIB.LZDECOMP);