1. Create the catalog and schema (Crossbeam adds the table itself)
CREATE CATALOG IF NOT EXISTS crossbeam_push;
CREATE SCHEMA IF NOT EXISTS crossbeam_push.overlaps;
2. Give Crossbeam permission to write (swap in your Service Principal name)
GRANT USE CATALOG ON CATALOG crossbeam_push TO `crossbeam-sp`;
GRANT USE SCHEMA, CREATE TABLE ON SCHEMA crossbeam_push.overlaps TO `crossbeam-sp`;
GRANT MODIFY, SELECT ON SCHEMA crossbeam_push.overlaps TO `crossbeam-sp`;
3. Turn it on in Crossbeam: Integrations → Databricks Push → Enable. Fill in the connection fields (hostname, HTTP path, catalog, schema, Client ID, Client Secret) and click Enable.
Learn how to set it up
here.