Unity Catalog
Guidance for Unity Catalog governance — access control, the privilege model,
external locations, securable DDL, and fine-grained access — plus system tables and
volume file operations.
Before running databricks CLI commands, confirm the CLI and the subcommand exist.
Run databricks --version — this skill assumes the unified CLI (≥ v1.0.0). Several
subcommands shown here (experimental aitools, system-schemas, external-lineage,
grants) vary by version or workspace availability; if one is missing or rejects a flag,
fall back to the SQL form or the Python SDK rather than guessing. Each reference notes its
own version floor where relevant.
When to Use This Skill
Use this skill when:
Governance & access control (start here):
- Granting or revoking access —
GRANT/REVOKE, the UC privilege model, ownership (ALTER … OWNER TO), SHOW GRANTS, "who can read/write this table?"
- Row- and column-level security — row filters, column masks, dynamic views with
current_user() / is_account_group_member()
- External locations & storage credentials —
CREATE STORAGE CREDENTIAL, CREATE EXTERNAL LOCATION, backing external tables/volumes
- Securable DDL & metadata — creating/altering catalogs, schemas, managed vs external tables, views; comments, tags, table properties, ownership
Observability & files:
- Working with volumes (upload, download, list files in
/Volumes/)
- Querying lineage (table dependencies, column-level lineage)
- Analyzing audit logs (who accessed what, permission changes)
- Monitoring billing and usage (DBU consumption, cost analysis)
- Tracking compute resources (cluster usage, warehouse metrics)
- Reviewing job execution (run history, success rates, failures)
- Analyzing query performance (slow queries, warehouse utilization)
- Profiling data quality (data profiling, drift detection, metric tables)
Reference Files
| Topic |
File |
Description |
| Access Control |
references/1-access-control.md |
Privilege model, securable hierarchy, GRANT/REVOKE, ownership, inheritance, SHOW GRANTS |
| External Locations |
references/2-external-locations.md |
Storage credentials (AWS/Azure/GCP), external locations, validation |
| Securables DDL |
references/3-securables-ddl.md |
CREATE/ALTER/DROP catalogs/schemas/tables/views, comments, tags, ownership |
| Fine-Grained Access |
references/4-fine-grained-access.md |
Row filters, column masks, dynamic views |
| System Tables |
references/5-system-tables.md |
Lineage, audit, billing, compute, jobs, query history |
| Volumes |
references/6-volumes.md |
Volume file operations, permissions, best practices |
| Data Profiling |
references/7-data-profiling.md |
Data profiling, drift detection, profile metrics |
Quick Start
Create Unity Catalog Objects (CLI)
Use --json for create commands. Positional argument order differs per command and
has changed across CLI versions, so --json is the order-independent, version-stable form
shown throughout this skill.
# Create a catalog
databricks catalogs create --json '{"name": "my_catalog"}'
# Create a schema
databricks schemas create --json '{"name": "my_schema", "catalog_name": "my_catalog"}'
# Create a managed volume
databricks volumes create --json '{
"catalog_name": "my_catalog",
"schema_name": "my_schema",
"name": "my_volume",
"volume_type": "MANAGED"
}'
# List catalogs, schemas, volumes (read commands take simple positional args)
databricks catalogs list
databricks schemas list my_catalog
databricks volumes list my_catalog.my_schema
Positional create args still work if you prefer them, but the order is not uniform
across commands — this is the per-command order (and the reason --json is recommended):
| Command |
Positional create order |
databricks catalogs create |
NAME |
databricks schemas create |
NAME CATALOG_NAME |
databricks volumes create |
CATALOG_NAME SCHEMA_NAME NAME VOLUME_TYPE |
CLI surface varies by version. If a databricks subcommand or positional signature is
missing in your install, prefer --json, the SQL form, or the Python SDK rather than
guessing flags.
Volume File Operations (CLI)
databricks fs requires the dbfs: scheme prefix even for UC Volume paths — without it the CLI treats the path as local filesystem and errors with no such directory.
# List files in a volume
databricks fs ls dbfs:/Volumes/catalog/schema/volume/path/
# Upload a directory's contents to a volume (-r copies contents, not the directory itself)
databricks fs cp -r --overwrite /tmp/data dbfs:/Volumes/catalog/schema/volume/dest
# Download a file from a volume
databricks fs cp dbfs:/Volumes/catalog/schema/volume/file.csv /tmp/file.csv
# Create a directory in a volume
databricks fs mkdirs dbfs:/Volumes/catalog/schema/volume/new_folder
Grant & Revoke Access
GRANT/REVOKE is the core governance operation. See references/1-access-control.md for the full privilege model.
-- Grant read access on a schema to a group
GRANT USE CATALOG ON CATALOG analytics TO `data_readers`;
GRANT USE SCHEMA ON SCHEMA analytics.gold TO `data_readers`;
GRANT SELECT ON SCHEMA analytics.gold TO `data_readers`;
-- Who can access this table?
SHOW GRANTS ON TABLE analytics.gold.customers;
-- Revoke
REVOKE SELECT ON SCHEMA analytics.gold FROM `data_readers`;
Enable System Tables Access
-- Grant access to system tables
GRANT USE CATALOG ON CATALOG system TO `data_engineers`;
GRANT USE SCHEMA ON SCHEMA system.access TO `data_engineers`;
GRANT SELECT ON SCHEMA system.access TO `data_engineers`;
Common Queries
-- Table lineage: What tables feed into this table?
SELECT source_table_full_name, source_column_name
FROM system.access.table_lineage
WHERE target_table_full_name = 'catalog.schema.table'
AND event_date >= current_date() - 7;
-- Audit: Recent permission changes
SELECT event_time, user_identity.email, action_name, request_params
FROM system.access.audit
WHERE action_name LIKE '%GRANT%' OR action_name LIKE '%REVOKE%'
ORDER BY event_time DESC
LIMIT 100;
-- Billing: DBU usage by workspace
SELECT workspace_id, sku_name, SUM(usage_quantity) AS total_dbus
FROM system.billing.usage
WHERE usage_date >= current_date() - 30
GROUP BY workspace_id, sku_name;
Running SQL from the CLI
databricks experimental aitools tools query is an experimental command. The
experimental namespace is not guaranteed to be stable across CLI versions and may be
absent in your install. Prefer running system-table SQL from a SQL warehouse (SQL
editor, scheduled query) or the Python SDK (w.statement_execution.execute_statement),
or a notebook. Use the experimental CLI only for quick ad-hoc checks.
Getting the IDs these examples use. WAREHOUSE_ID — run databricks warehouses list
(or copy it from a SQL warehouse's Connection details in the UI). METASTORE_ID (used in
references/5-system-tables.md) — w.metastores.current().metastore_id
via the SDK, or the Catalog UI → metastore details.
Experimental CLI form (convenience only):
databricks experimental aitools tools query --warehouse WAREHOUSE_ID "
SELECT source_table_full_name, target_table_full_name
FROM system.access.table_lineage
WHERE event_date >= current_date() - 7
"
Stable SDK fallback (works on any CLI version):
from databricks.sdk import WorkspaceClient
w = WorkspaceClient()
resp = w.statement_execution.execute_statement(
warehouse_id="WAREHOUSE_ID",
statement="""
SELECT source_table_full_name, target_table_full_name
FROM system.access.table_lineage
WHERE event_date >= current_date() - 7
LIMIT 100
""",
)
for row in resp.result.data_array or []:
print(row)
CLI surface varies by version. If a databricks subcommand (e.g. an experimental
tool, system-schemas, or external-lineage) is missing, fall back to the SQL warehouse
or the Python SDK shown above rather than guessing flags.
Best Practices
- Grant minimal access - Apply least privilege; grant at the narrowest securable that works
- Filter by date - System tables can be large; always use date filters
- Use appropriate retention - Check your workspace's retention settings
- Schedule reports - Create scheduled queries for regular monitoring
- Prefer SQL/SDK over experimental CLI - For anything beyond quick checks
Related Skills
This skill owns Unity Catalog governance: access control, the privilege model,
external locations / storage credentials, securable DDL, fine-grained access, system
tables, and volumes. For adjacent concerns, use the sibling skill instead:
Roadmap (not yet covered — deferred to a later version)
These governance areas are intentionally out of scope for v0.3.0 and planned for later:
- Delta Sharing / Marketplace / Clean Rooms
- Lakehouse Federation (connections + foreign catalogs)
- ABAC / governed tags as policy
Resources
1---2name: databricks-unity-catalog3description: Unity Catalog governance, access control, and observability. Use to grant or revoke access (GRANT/REVOKE), reason about the privilege model and ownership, set up row-level security and column masks, create external locations and storage credentials, define catalogs/schemas/tables/volumes, answer "who can read this table", and query system tables (audit, lineage, billing) or work with volume files in /Volumes/.4---5
6# Unity Catalog
7
8Guidance for Unity Catalog **governance** — access control, the privilege model,
9external locations, securable DDL, and fine-grained access — plus system tables and
10volume file operations.
11
12> **Before running `databricks` CLI commands, confirm the CLI and the subcommand exist.**
13> Run `databricks --version` — this skill assumes the unified CLI (**≥ v1.0.0**). Several
14> subcommands shown here (`experimental aitools`, `system-schemas`, `external-lineage`,
15> `grants`) vary by version or workspace availability; if one is missing or rejects a flag,
16> fall back to the SQL form or the Python SDK rather than guessing. Each reference notes its
17> own version floor where relevant.
18
19## When to Use This Skill
20
21Use this skill when:
22
23**Governance & access control (start here):**
24- **Granting or revoking access** — `GRANT`/`REVOKE`, the UC privilege model, ownership (`ALTER … OWNER TO`), `SHOW GRANTS`, "who can read/write this table?"
25- **Row- and column-level security** — row filters, column masks, dynamic views with `current_user()` / `is_account_group_member()`
26- **External locations & storage credentials** — `CREATE STORAGE CREDENTIAL`, `CREATE EXTERNAL LOCATION`, backing external tables/volumes
27- **Securable DDL & metadata** — creating/altering catalogs, schemas, managed vs external tables, views; comments, tags, table properties, ownership
28
29**Observability & files:**
30- Working with **volumes** (upload, download, list files in `/Volumes/`)
31- Querying **lineage** (table dependencies, column-level lineage)
32- Analyzing **audit logs** (who accessed what, permission changes)
33- Monitoring **billing and usage** (DBU consumption, cost analysis)
34- Tracking **compute resources** (cluster usage, warehouse metrics)
35- Reviewing **job execution** (run history, success rates, failures)
36- Analyzing **query performance** (slow queries, warehouse utilization)
37- Profiling **data quality** (data profiling, drift detection, metric tables)
38
39## Reference Files
40
41| Topic | File | Description |
42|-------|------|-------------|
43| **Access Control** | [references/1-access-control.md](references/1-access-control.md) | Privilege model, securable hierarchy, GRANT/REVOKE, ownership, inheritance, `SHOW GRANTS` |
44| **External Locations** | [references/2-external-locations.md](references/2-external-locations.md) | Storage credentials (AWS/Azure/GCP), external locations, validation |
45| **Securables DDL** | [references/3-securables-ddl.md](references/3-securables-ddl.md) | CREATE/ALTER/DROP catalogs/schemas/tables/views, comments, tags, ownership |
46| **Fine-Grained Access** | [references/4-fine-grained-access.md](references/4-fine-grained-access.md) | Row filters, column masks, dynamic views |
47| System Tables | [references/5-system-tables.md](references/5-system-tables.md) | Lineage, audit, billing, compute, jobs, query history |
48| Volumes | [references/6-volumes.md](references/6-volumes.md) | Volume file operations, permissions, best practices |
49| Data Profiling | [references/7-data-profiling.md](references/7-data-profiling.md) | Data profiling, drift detection, profile metrics |
50
51## Quick Start
52
53### Create Unity Catalog Objects (CLI)
54
55**Use `--json` for `create` commands.** Positional argument order differs per command and
56has changed across CLI versions, so `--json` is the order-independent, version-stable form
57shown throughout this skill.
58
59```bash
60# Create a catalog
61databricks catalogs create --json '{"name": "my_catalog"}'
62
63# Create a schema
64databricks schemas create --json '{"name": "my_schema", "catalog_name": "my_catalog"}'
65
66# Create a managed volume
67databricks volumes create --json '{
68 "catalog_name": "my_catalog",
69 "schema_name": "my_schema",
70 "name": "my_volume",
71 "volume_type": "MANAGED"
72}'
73
74# List catalogs, schemas, volumes (read commands take simple positional args)
75databricks catalogs list
76databricks schemas list my_catalog
77databricks volumes list my_catalog.my_schema
78```
79
80Positional `create` args still work if you prefer them, but the order is **not** uniform
81across commands — this is the per-command order (and the reason `--json` is recommended):
82
83| Command | Positional `create` order |
84|---------|---------------------------|
85| `databricks catalogs create` | `NAME` |
86| `databricks schemas create` | `NAME CATALOG_NAME` |
87| `databricks volumes create` | `CATALOG_NAME SCHEMA_NAME NAME VOLUME_TYPE` |
88
89> **CLI surface varies by version.** If a `databricks` subcommand or positional signature is
90> missing in your install, prefer `--json`, the SQL form, or the Python SDK rather than
91> guessing flags.
92
93### Volume File Operations (CLI)
94
95`databricks fs` requires the `dbfs:` scheme prefix even for UC Volume paths — without it the CLI treats the path as local filesystem and errors with `no such directory`.
96
97```bash
98# List files in a volume
99databricks fs ls dbfs:/Volumes/catalog/schema/volume/path/
100
101# Upload a directory's contents to a volume (-r copies contents, not the directory itself)
102databricks fs cp -r --overwrite /tmp/data dbfs:/Volumes/catalog/schema/volume/dest
103
104# Download a file from a volume
105databricks fs cp dbfs:/Volumes/catalog/schema/volume/file.csv /tmp/file.csv
106
107# Create a directory in a volume
108databricks fs mkdirs dbfs:/Volumes/catalog/schema/volume/new_folder
109```
110
111### Grant & Revoke Access
112
113`GRANT`/`REVOKE` is the core governance operation. See [references/1-access-control.md](references/1-access-control.md) for the full privilege model.
114
115```sql
116-- Grant read access on a schema to a group
117GRANT USE CATALOG ON CATALOG analytics TO `data_readers`;
118GRANT USE SCHEMA ON SCHEMA analytics.gold TO `data_readers`;
119GRANT SELECT ON SCHEMA analytics.gold TO `data_readers`;
120
121-- Who can access this table?
122SHOW GRANTS ON TABLE analytics.gold.customers;
123
124-- Revoke
125REVOKE SELECT ON SCHEMA analytics.gold FROM `data_readers`;
126```
127
128### Enable System Tables Access
129
130```sql
131-- Grant access to system tables
132GRANT USE CATALOG ON CATALOG system TO `data_engineers`;
133GRANT USE SCHEMA ON SCHEMA system.access TO `data_engineers`;
134GRANT SELECT ON SCHEMA system.access TO `data_engineers`;
135```
136
137### Common Queries
138
139```sql
140-- Table lineage: What tables feed into this table?
141SELECT source_table_full_name, source_column_name
142FROM system.access.table_lineage
143WHERE target_table_full_name = 'catalog.schema.table'
144 AND event_date >= current_date() - 7;
145
146-- Audit: Recent permission changes
147SELECT event_time, user_identity.email, action_name, request_params
148FROM system.access.audit
149WHERE action_name LIKE '%GRANT%' OR action_name LIKE '%REVOKE%'
150ORDER BY event_time DESC
151LIMIT 100;
152
153-- Billing: DBU usage by workspace
154SELECT workspace_id, sku_name, SUM(usage_quantity) AS total_dbus
155FROM system.billing.usage
156WHERE usage_date >= current_date() - 30
157GROUP BY workspace_id, sku_name;
158```
159
160## Running SQL from the CLI
161
162> **`databricks experimental aitools tools query` is an experimental command.** The
163> `experimental` namespace is not guaranteed to be stable across CLI versions and may be
164> absent in your install. Prefer running system-table SQL from a **SQL warehouse** (SQL
165> editor, scheduled query) or the **Python SDK** (`w.statement_execution.execute_statement`),
166> or a **notebook**. Use the experimental CLI only for quick ad-hoc checks.
167
168> **Getting the IDs these examples use.** `WAREHOUSE_ID` — run `databricks warehouses list`
169> (or copy it from a SQL warehouse's *Connection details* in the UI). `METASTORE_ID` (used in
170> [references/5-system-tables.md](references/5-system-tables.md)) — `w.metastores.current().metastore_id`
171> via the SDK, or the Catalog UI → metastore details.
172
173Experimental CLI form (convenience only):
174
175```bash
176databricks experimental aitools tools query --warehouse WAREHOUSE_ID "
177 SELECT source_table_full_name, target_table_full_name
178 FROM system.access.table_lineage
179 WHERE event_date >= current_date() - 7
180"
181```
182
183Stable SDK fallback (works on any CLI version):
184
185```python
186from databricks.sdk import WorkspaceClient
187
188w = WorkspaceClient()
189resp = w.statement_execution.execute_statement(
190 warehouse_id="WAREHOUSE_ID",
191 statement="""
192 SELECT source_table_full_name, target_table_full_name
193 FROM system.access.table_lineage
194 WHERE event_date >= current_date() - 7
195 LIMIT 100
196 """,
197)
198for row in resp.result.data_array or []:
199 print(row)
200```
201
202> **CLI surface varies by version.** If a `databricks` subcommand (e.g. an `experimental`
203> tool, `system-schemas`, or `external-lineage`) is missing, fall back to the SQL warehouse
204> or the Python SDK shown above rather than guessing flags.
205
206## Best Practices
207
2081. **Grant minimal access** - Apply least privilege; grant at the narrowest securable that works
2092. **Filter by date** - System tables can be large; always use date filters
2103. **Use appropriate retention** - Check your workspace's retention settings
2114. **Schedule reports** - Create scheduled queries for regular monitoring
2125. **Prefer SQL/SDK over experimental CLI** - For anything beyond quick checks
213
214## Related Skills
215
216This skill owns Unity Catalog **governance**: access control, the privilege model,
217external locations / storage credentials, securable DDL, fine-grained access, system
218tables, and volumes. For adjacent concerns, use the sibling skill instead:
219
220- **databricks-core** (declared parent) — auth, profile selection, generic CLI, and catalog/table *exploration*
221- **[databricks-metric-views](../databricks-metric-views/SKILL.md)** — metric view definitions / DDL (`WITH METRICS LANGUAGE YAML`)
222- **[databricks-iceberg](../databricks-iceberg/SKILL.md)** — Managed Iceberg, External Iceberg Reads (fka Uniform), and **Iceberg REST Catalog (IRC) credential *vending*** for external engines — distinct from UC storage credentials (see [references/2-external-locations.md](references/2-external-locations.md))
223- **[databricks-ml-training](../databricks-ml-training/SKILL.md)** — UC model registration and `@prod`/`@challenger` aliases
224- **[databricks-vector-search](../databricks-vector-search/SKILL.md)** — Vector Search indexes
225- **[databricks-pipelines](../databricks-pipelines/SKILL.md)**, **[databricks-jobs](../databricks-jobs/SKILL.md)**, **[databricks-lakeflow-connect](../databricks-lakeflow-connect/SKILL.md)** — *producing* tables via pipelines/jobs/managed ingestion
226- **[databricks-lakebase](../databricks-lakebase/SKILL.md)** — Lakebase / synced tables (OLTP)
227- **[databricks-ai-functions](../databricks-ai-functions/SKILL.md)** — AI functions such as `ai_mask` / `ai_classify` (AI *transforms*, **not** access control — see [references/4-fine-grained-access.md](references/4-fine-grained-access.md))
228- **[databricks-aibi-dashboards](../databricks-aibi-dashboards/SKILL.md)** — AI/BI dashboards on UC data
229- **[databricks-synthetic-data-gen](../databricks-synthetic-data-gen/SKILL.md)** — generating data stored in UC volumes
230
231### Roadmap (not yet covered — deferred to a later version)
232
233These governance areas are intentionally **out of scope for v0.3.0** and planned for later:
234
235- Delta Sharing / Marketplace / Clean Rooms
236- Lakehouse Federation (connections + foreign catalogs)
237- ABAC / governed tags as policy
238
239## Resources
240
241- [Unity Catalog Privileges & Securable Objects](https://docs.databricks.com/data-governance/unity-catalog/manage-privileges/privileges.html)
242- [Unity Catalog System Tables](https://docs.databricks.com/administration-guide/system-tables/)
243- [Audit Log Reference](https://docs.databricks.com/administration-guide/account-settings/audit-logs.html)
244- [Manage External Locations and Storage Credentials](https://docs.databricks.com/connect/unity-catalog/index.html)