DATA_CLASSIFICATION_LATEST view (ACCOUNT_USAGE): schemaId column name changed to schema_id¶
Attention
This behavior change is in the 2025_02 bundle.
For the current status of the bundle, refer to Bundle History.
With this behavior change, the name of the schemaId column in the ACCOUNT_USAGE
DATA_CLASSIFICATION_LATEST view is changing to schema_id.
If you have SQL statements that refer to the column name schemaId, you must change those statements to use schema_id as
the column name.
- Before the change:
Referring to the column name
schemaIddoes not cause a SQL statement to fail. For example:SELECT schemaId FROM SNOWFLAKE.ACCOUNT_USAGE.DATA_CLASSIFICATION_LATEST LIMIT 1;
+----------+ | SCHEMAID | |----------| | ... | +----------+
- After the change:
Referring to the column name
schemaIdcauses a SQL statement to fail. For example:SELECT schemaId FROM SNOWFLAKE.ACCOUNT_USAGE.DATA_CLASSIFICATION_LATEST LIMIT 1;
000904 (42000): SQL compilation error: error line 1 at position 7 invalid identifier 'SCHEMAID'
Ref: 1885