CATALOGS
Applies to:  Databricks SQL 
 Databricks Runtime 10.4 LTS and above 
 Unity Catalog only
INFORMATION_SCHEMA.CATALOGS describes catalogs.
Information is displayed only for catalogs bound to the current workspace that the user has permission to interact with.
This is an extension to the SQL Standard Information Schema.
Definition
The CATALOGS relation contains the following columns:
| Name | Data type | Nullable | Description | 
|---|---|---|---|
| 
 | 
 | No | Name of the catalog. | 
| 
 | 
 | No | Owner of the catalog. | 
| 
 | 
 | Yes | An optional comment that describes the catalog. | 
| 
 | 
 | No | Timestamp when the catalog was created. | 
| 
 | 
 | No | Principal who created the catalog. | 
| 
 | 
 | No | Timestamp when the catalog was last altered in any way. | 
| 
 | 
 | No | Principal who last altered the catalog. | 
Constraints
The following constraints apply to the CATALOGS relation:
| Class | Name | Column List | Description | 
|---|---|---|---|
| Primary key | 
 | 
 | Unique identifier for the catalog. | 
Examples
> SELECT catalog_owner
    FROM information_schema.catalogs