Example: Statistics Are Not Copied If An OLAP Operation Is Specified in The Subquery - Teradata Vantage - Analytics Database

SQL Data Definition Language Syntax and Examples

Deployment
VantageCloud
VantageCore
Edition
VMware
Enterprise
IntelliFlex
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
ft:locale
en-US
ft:lastEdition
2025-11-22
dita:mapPath
jco1628111346878.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
mdr1472255012272
lifecycle
latest
Product Category
Teradata Vantage™

Vantage does not copy statistics if an OLAP function is specified in the subquery as the examples in this set demonstrate.

Example1

In this example, Vantage does not copy statistics because of the OLAP RANK function in the subquery.

    CREATE TABLE t3 (c1, c2, c3) AS (SELECT x, RANK(y), z
                                     FROM test 
                                     QUALIFY RANK(X)> 1) 
    WITH DATA AND STATISTICS;

Example2

In this example, Vantage does not copy statistics because of the partial data returned by the SAMPLE operator.

    CREATE TABLE t3 (c1, c2, c3) AS (SELECT x, y, z
                                     FROM test SAMPLE 4) 
    WITH DATA AND STATISTICS;