Dynamic tables: Changes to ACCOUNT_ USAGE.TABLES and INFORMATION_ SCHEMA.TABLES¶
New column added¶
The ACCOUNT_USAGE.TABLES and INFORMATION_SCHEMA.TABLES views include the following new column:
| Column name | Data type | Description |
|---|---|---|
is_dynamic | Text | Indicates whether the table is a dynamic table. Valid values are YES or NO. |
Changes to ACCOUNT_ USAGE.TABLES¶
Beginning with the 8.9 release, the following changes to ACCOUNT_USAGE.TABLES are enabled:
- Before the change:
Dynamic tables are not included in this view. For rows that represent dynamic tables, the value for the
is_insertable_intocolumn isYES.The ACCOUNT_USAGE.TABLES view doesn’t include the
is_dynamiccolumn.- After the change:
Dynamic tables are included in this view. For rows that represent dynamic tables, the values of the
table_typeandis_insertable_intocolumns areBASE TABLEandNO, respectively.The ACCOUNT_USAGE.TABLES view includes the
is_dynamiccolumn, defined above.
Changes to INFORMATION_ SCHEMA.TABLES¶
Beginning with the 8.9 release, the following changes to INFORMATION_SCHEMA.TABLES are enabled:
- Before the change:
For rows that represent dynamic tables, the values of the
table_typeandis_insertable_intocolumns areNULLandYES, respectively.The INFORMATION_SCHEMA.TABLES view doesn’t include the
is_dynamiccolumn.- After the change:
For rows that represent dynamic tables, the values of the
table_typeandis_insertable_intocolumns areBASE TABLEandNO, respectively.The INFORMATION_SCHEMA.TABLES view includes the
is_dynamiccolumn, defined above.