List all PPI tables in Teradata:
The index and parition information in teradata can be found in below two tables.
dbc.indices
==========
all index information in Teradata is stored in dbc.indices and as table is being partitioned on primay index
the table is partition information can be found with indextype='Q'.
sel * from dbc.indices where indextype='Q' and databasename=<yourdatabasename>
dbc.indexconstraints
===============
Teradata consider PPI as constraints and also store the partition expression in dbc.indexconstraints
sel constrainttext from dbc.indexconstraints where dbc.indexconstraints='Q'
The index and parition information in teradata can be found in below two tables.
dbc.indices
==========
all index information in Teradata is stored in dbc.indices and as table is being partitioned on primay index
the table is partition information can be found with indextype='Q'.
sel * from dbc.indices where indextype='Q' and databasename=<yourdatabasename>
dbc.indexconstraints
===============
Teradata consider PPI as constraints and also store the partition expression in dbc.indexconstraints
sel constrainttext from dbc.indexconstraints where dbc.indexconstraints='Q'