Example: Compressing Unicode Values with LZCOMP - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
Language
English (United States)
Last Update
2024-04-03
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

In this example, the Unicode values in the Description column are compressed using the LZCOMP function with ALC. The LZDECOMP function uncompresses the previously compressed values.

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);