Where Functions Save Output Files - Teradata Vantage

Machine Learning Engine Analytic Function Reference

Product
Teradata Vantage
Release Number
8.00
1.0
Published
May 2019
Language
English (United States)
Last Update
2019-11-22
dita:mapPath
blj1506016597986.ditamap
dita:ditavalPath
blj1506016597986.ditaval
dita:id
B700-4003
lifecycle
previous
Product Category
Teradata Vantageā„¢

Model Files

Functions that output model files save them on the user schema on the ML Engine.

Nonmodel Output Files

By default, functions save nonmodel output files to the user database. To save an output table to a different database, prefix the table name with the database name; for example:

SELECT * FROM UnivariateStatistics (
  ON abc_table AS InputTable
  OUT TABLE MomentsTableName (db1.moments)
  OUT TABLE BasicTableName (db1.basic)
  OUT TABLE QuantilesTableName (db1.quantiles)
) AS dt;