ChunkText Example: Loading Model with BTEQ - Teradata Vantage

Teradata Vantage™ - Bring Your Own Model User Guide

Deployment
VantageCloud
VantageCore
Edition
VMware
Enterprise
IntelliFlex
Lake
Product
Teradata Vantage
Release Number
20.00
Published
May 2026
ft:locale
en-US
ft:lastEdition
2026-06-18
dita:mapPath
fee1607120608274.ditamap
dita:ditavalPath
ayr1485454803741.ditaval
dita:id
fee1607120608274
-- load generated model using BTEQ client


-- Make sure that the tokenizer table "chunk_tokenizers_tst" exists and has two columns: tokenizer_id as "varchar" and tokenizer as "BLOB" type
-- Create a file load_tokenizer.txt that has a tokenizer_id and a tokenizer file name entry such as:
-- bge-small-en-v1.5|bge-small-en-v1.5.json

.import vartext file ./load_tokenizer.txt

.repeat *
USING (c1 VARCHAR(40), c2 BLOB AS DEFERRED BY NAME) INSERT INTO chunk_tokenizers_tst(:c1, :c2);