Additional dashboards
You'll install the community
system-tablesdemo so optional AI/BI dashboards run against your real billing data in ~15 min.
What you'll build
Multiple dashboards plus notebooks: consumption tracking, DBU forecast, model-endpoint cost attribution, warehouse attribution, and UC/volume analysis. Intermediate tables land in a Unity Catalog catalog and schema you choose (not necessarily main).
Official source (Demo Center): System Tables: Billing Forecast, Usage Analytics, and Access Auditing with Unity Catalog
Confirm the demo slug is still system-tables on PyPI or GitHub before you standardize this in enablement.
Steps
1. Install the dashboard from dbdemos library.
Run the following cells on a new Python notebook.
%pip install dbdemos
dbutils.library.restartPython()
import dbdemos
catalog = "mycatalog"
schema = "myschema"
dbdemos.install("uc-04-system-tables", catalog=catalog, schema=schema)
Set catalog and schema to your existing UC assets, example:
Wait until the notebook finishes and prints status for notebooks and dashboards.


Verify
Open Dashboards and Genie Spaces sections to verify the new assets.


Troubleshoot
ModuleNotFoundError: dbdemos
Run %pip install dbdemos, then dbutils.library.restartPython() before importing.
Permission denied writing catalog or schema
Pick a catalog and schema where your user may create tables, or ask a metastore admin to grant CREATE.
Permission denied on system tables
An admin must grant SELECT on system.billing (and system.access for audit-backed tiles).
Empty charts
New accounts need accumulated usage. Forecast tiles may stay thin until enough daily history exists.
Install hangs
Confirm the cluster has internet egress to PyPI and enough resources.
Next
- Do next: Tags and attribution
- Learn why: Unity Catalog foundations
- Reference: System Tables demo (Demo Center)