-- load generated model using BTEQ client -- Make sure that the model table "models" exists and has two columns: model_id as "varchar" and model as "BLOB" type -- Create a file load_model.txt that has a model_id and a model file name entry such as: -- dist-base-multi-senti-student|dist-base-multi-senti-student.onnx .import vartext file load_model.txt .repeat * USING (c1 VARCHAR(30), c2 BLOB AS DEFERRED BY NAME) INSERT INTO models(:c1, :c2);