Pere Miquel Brull 34fbe5d64c
Docs - Prepare 1.7 docs and 1.8 snapshot (#20882)
* DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT

* DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT
2025-04-18 12:12:17 +05:30

911 B

Reverse Metadata

Description Management

BigQuery supports description updates at the following levels:

  • Schema level
  • Table level

Owner Management

Owner management is not supported for BigQuery.

Tag Management

BigQuery supports tag management at the following levels:

  • Schema level
  • Table level

Custom SQL Template

BigQuery 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:

-- Update table labels
ALTER TABLE `{database}.{schema}.{table}` SET OPTIONS (labels = {tags});

The list of variables for custom SQL can be found here.

For more details about reverse metadata ingestion, visit our Reverse Metadata Documentation.