> ## Documentation Index
> Fetch the complete documentation index at: https://docs.creditbenchmark.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Databricks Data Delivery

> Databricks access for Credit Benchmark data delivery via the Databricks Marketplace.

Credit Benchmark data is available on the Databricks Marketplace as a Delta Sharing listing. Once the share is accepted, the data appears as a catalog in your Databricks workspace and is queryable directly from notebooks, SQL warehouses, and jobs.

## Databricks Marketplace

<Columns cols={1}>
  <Card icon="database" title="Open Credit Benchmark Credit Consensus Ratings & Indices in Databricks Marketplace" href="https://marketplace.databricks.com/details/a69104ee-f8ad-41c0-8e11-672ba9cce410/Credit-Benchmark_Credit-Consensus-Ratings-Indices" />
</Columns>

The Marketplace listing is the entry point for requesting access. A Credit Benchmark subscription is required before the share is granted.

## Prerequisites

* A Databricks workspace with Unity Catalog enabled.
* Permission to accept Marketplace listings and create catalogs (typically a metastore admin).
* A Credit Benchmark subscription that includes Databricks delivery.

## Getting Access

<Steps>
  <Step title="Request access on the Marketplace listing">
    From the listing, click **Get instant access** (or **Request access**) and submit your Databricks account and workspace details.
  </Step>

  <Step title="Confirm entitlement with Credit Benchmark">
    Notify your Credit Benchmark representative that you have requested the share so they can confirm your subscription entitlement and approve provisioning.
  </Step>

  <Step title="Accept the share and create a catalog">
    Once approved, accept the share in Databricks. This creates a Unity Catalog catalog containing the Credit Benchmark schemas and tables.
  </Step>

  <Step title="Grant access to users">
    Grant `USE CATALOG` and `SELECT` on the new catalog to the groups or users that need to read the data.

    ```sql theme={null}
    GRANT USE CATALOG ON CATALOG credit_benchmark TO `<your_group>`;
    GRANT SELECT ON CATALOG credit_benchmark TO `<your_group>`;
    ```
  </Step>

  <Step title="Verify access">
    Query a table to confirm the share is live:

    ```sql theme={null}
    SELECT * FROM credit_benchmark.<schema>.<table> LIMIT 10;
    ```
  </Step>
</Steps>

The schema, table, and field definitions match the [Data Dictionary](/data/data-dictionary).

## Need Help?

For provisioning or onboarding questions, contact your Credit Benchmark representative or email [support@creditbenchmark.com](mailto:support@creditbenchmark.com).
