Secondary Indexes | Database Design | Teradata Vantage - Overview - Advanced SQL Engine - Teradata Database

Database Design

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-22
dita:mapPath
qby1588121512748.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1094
lifecycle
previous
Product Category
Teradata Vantage™

This section describes Teradata Database Unique Secondary Indexes (USIs) and Nonunique Secondary Indexes (NUSIs).

When column demographics suggest their usefulness, the Optimizer selects secondary indexes to provide faster single row or set selection, depending on whether the index is a USI or a NUSI, respectively.

A secondary index is never required for Teradata Database tables, but they can often improve system performance, particularly in decision support environments.

While secondary indexes are useful for optimizing repetitive and standardized queries, Teradata Database is also highly optimized to perform full-table scans in parallel. Because of the strength of full-table scan optimization in Teradata Database, there is little reason to be heavy-handed about assigning multiple secondary indexes to a table.

You can create secondary indexes when you create the table (see “CREATE TABLE” in Teradata Vantage™ - SQL Data Definition Language Syntax and Examples, B035-1144), or you can add them later using the CREATE INDEX statement (see “CREATE INDEX” in Teradata Vantage™ - SQL Data Definition Language Syntax and Examples, B035-1144). Unlike primary indexes, secondary indexes can be dropped and created at will.

For more information about how Teradata Database accesses data using a unique secondary index, see USI Access.

For more information about how Teradata Database accesses data using a nonunique secondary index, see NUSI Access and Performance.

For design issues related to secondary index support for tactical queries, see Two-AMP Operations: USI Access and Tactical Queries and NUSI Access and Tactical Queries.

As is true for other types of indexes, you should keep the statistics on your secondary indexes as current as possible.

The recommended practice for recollecting statistics is to set appropriate thresholds for recollection using the THRESHOLD options of the COLLECT STATISTICS statement. See “COLLECT STATISTICS in Teradata Vantage™ - SQL Data Definition Language Syntax and Examples, B035-1144 for details on how to do this.