Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2025 08:26 AM - edited 01-31-2025 08:30 AM
The legacy Hive metastore is maintained for backward compatibility. When you start using Unity Catalog compatible compute i.e. when the workspace has an assigned Unity Catalog metastore, and the cluster is in access mode 'Shared' or 'Single User', or in SQL warehouses then you to reference a fully qualified 3 level name. Catalog.Schema.table.
Run the following SQL queries to check if Unity Catalog is enabled and to list the catalogs and schemas.
-- List catalogs
SHOW CATALOGS;
-- List schemas in a specific catalog
SHOW SCHEMAS IN <catalog_name>;