Examples | Values Analysis | Vantage Analytics Library - Examples - Vantage Analytics Library

Vantage Analytics Library User Guide

Deployment
VantageCloud
VantageCore
Edition
VMware
Enterprise
IntelliFlex
Lake
Product
Vantage Analytics Library
Release Number
2.2.0
Published
June 2025
ft:locale
en-US
ft:lastEdition
2025-07-02
dita:mapPath
ibw1595473364329.ditamap
dita:ditavalPath
iup1603985291876.ditaval
dita:id
zyl1473786378775
Product Category
Teradata Vantage

Required Parameters Only

call td_analyze (
  'values',
  'database = val_source;
   tablename = customer_analysis;
   columns = income, marital_status;'
);

Some Optional Parameters, Output Table

call td_analyze (
  'values',
  'database = val_source;
   tablename = customer_analysis;
   columns = income, marital_status;
   outputdatabase = val_results;
   outputtablename = values_table;
   groupby = gender;
   where = cust_id > 0;'
);

More Optional Parameters, Output Table

call td_analyze (
  'values',
  'database = val_source;
   tablename = customer_analysis;
   columns = income, marital_status;
   outputdatabase = val_results;
   outputtablename = values;
   groupby = gender;
   where = cust_id > 0;
   uniques = false;'
);