Skip to main content

table_summaries

Creates, updates, deletes, gets or lists a table_summaries resource.

Overview

Nametable_summaries
TypeResource
Iddatabricks_workspace.unitycatalog.table_summaries

Fields

The following fields are returned by SELECT queries:

The table summaries list was successfully retrieved.

NameDatatypeDescription
full_namestring
table_typestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listsummariesselectdeployment_nameGets an array of summaries for tables for a schema and catalog within the metastore. The table summaries returned are either:

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
deployment_namestringThe Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc)

SELECT examples

Gets an array of summaries for tables for a schema and catalog within the metastore. The table summaries returned are either:

SELECT
full_name,
table_type
FROM databricks_workspace.unitycatalog.table_summaries
WHERE deployment_name = '{{ deployment_name }}' -- required;