mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-02 03:29:03 +00:00
* DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT * DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT
1.0 KiB
1.0 KiB
Reverse Metadata
Description Management
Databricks supports description updates at all levels:
- Database level
- Schema level
- Table level
- Column level
Owner Management
Databricks supports owner management at the following levels:
- Database level
- Schema level
- Table level
{% note %}
Databricks does not support to set null as owner.
{% /note %}
Tag Management
Databricks supports tag management at all levels:
- Database level
- Schema level
- Table level
- Column level
Custom SQL Template
Databricks supports custom SQL templates for metadata changes. The template is interpreted using python f-strings.
Here are examples of custom SQL queries for metadata changes:
-- Set table tags
ALTER TABLE {database}.{schema}.{table} SET TAGS {tags};
The list of variables for custom SQL can be found here.
For more details about reverse metadata ingestion, visit our Reverse Metadata Documentation.