Skip to main content

output_catalog

Operations on a output_catalog resource.

Overview

Nameoutput_catalog
TypeResource
Iddatabricks_workspace.cleanrooms.output_catalog

SELECT not supported for this resource, see the methods section for supported operations.

Methods

NameAccessible byRequired ParamsDescription
createoutputcatalogINSERTclean_room_name, deployment_nameCreate the output catalog of the clean room.

INSERT example

Use the following StackQL query and manifest file to create a new output_catalog resource.

/*+ create */
INSERT INTO databricks_workspace.cleanrooms.output_catalog (
clean_room_name,
deployment_name,
data__catalog_name
)
SELECT
'{{ clean_room_name }}',
'{{ deployment_name }}',
'{{ catalog_name }}'
;