SHOW CREATE CATALOG

Description

Queries the creation statement of an external catalog, such as a Hive, Iceberg, Hudi, or Delta Lake catalog. See Hive catalog, Iceberg catalog, Hudi catalog, and Delta Lake catalog. Note that authentication-related information in the return result will be anonymized.

Syntax

SHOW CREATE CATALOG <catalog_name>;

Parameters

ParameterRequiredDescription
catalog_nameYesThe name of the catalog whose creation statement you want to view.

Return result

+------------+-----------------+
| Catalog    | Create Catalog  |
+------------+-----------------+
FieldDescription
CatalogThe name of the catalog.
Create CatalogThe statement that was executed to create the catalog.

Examples

The following example queries the creation statement of a Hive catalog named hive_catalog_hms:

SHOW CREATE CATALOG hive_catalog_hms;

The return result is as follows:

CREATE EXTERNAL CATALOG `hive_catalog_hms`
PROPERTIES ("aws.s3.access_key"  =  "AK******M4",
"hive.metastore.type"  =  "glue",
"aws.s3.secret_key"  =  "iV******iD",
"aws.glue.secret_key"  =  "iV******iD",
"aws.s3.use_instance_profile"  =  "false",
"aws.s3.region"  =  "us-west-1",
"aws.glue.region"  =  "us-west-1",
"type"  =  "hive",
"aws.glue.access_key"  =  "AK******M4"
)