DataSize Function Examples | VantageCloud Lake - DataSize Examples - 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

The following examples use JSON data types.

SELECT TD_SYSFNLIB.DataSize (NEW JSON ('{"name" : "Mitzy", "age" : 3}'));

Result:

datasize( NEW JSON('{"name" : "Mitzy", "age" : 3}', LATIN))
-----------------------------------------------------------
                                                         29
CREATE TABLE JSON_table (id INTEGER, jsn JSON INLINE LENGTH 1000);

INSERT INTO JSON_table VALUES (100, '{"name" : "Mitzy", "age" : 3}');
INSERT INTO JSON_table VALUES (200, '{"name" : "Rover", "age" : 5}');
INSERT INTO JSON_table VALUES (300, '{"name" : "Princess", "age" : 4.5}');

SELECT * FROM JSON_table ORDER BY id;

Result:

         id jsn
----------- ------------------------------------------
        100 {"name" : "Mitzy", "age" : 3}
        200 {"name" : "Rover", "age" : 5}
        300 {"name" : "Princess", "age" : 4.5}
SELECT id, TD_SYSFNLIB.DataSize (jsn) FROM JSON_table ORDER BY id;

Result:

         id         datasize(jsn)
-----------  --------------------
        100                    29
        200                    29
        300                    34