---
title: "Connect Gong to Snowflake"
slug: "connect-gong-to-snowflake"
updated: 2026-02-18T14:07:08Z
published: 2026-02-18T14:07:08Z
---

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

# Connect Gong to Snowflake

> **Who can use this**: Tech admin **Available on**: Data Cloud

To connect Gong to Snowflake, you need to provide your account details in Gong, wait for the connection to be confirmed and then set up the database in Snowflake.

**To set up the integration in Gong:**

1. Go to **Admin center** > **Settings** > **Data cloud** > **Data cloud settings**.
2. Select **Snowflake**.
3. Enter your Snowflake credentials:
  - Account locator: the identifier for the Snowflake account you want Gong data to be available from.
  - Account region: available from your Snowflake admin. If the account region is not included in the list, the region is not currently supported. You can ask us to add the region and we will let you know when your region is supported.

Supported regions are:
    - AWS ap_south_1
    - AWS ap-southeast-1
    - AWS ap-southeast-2
    - AWS ca-central-1
    - AWS eu-central-1
    - AWS us-east-1
    - AWS us-east-2
    - AWS us-west-2
    - AWS eu-west-1
    - AWS eu-west-2
    - AWS eu_west_3
    - Entra ID azwestus2
    - Entra ID centralus
    - Entra ID europewest
    - Entra ID northeurope
    - Entra ID useast2
    - GCP europe-west4
    - GCP us-central1
  - Snowflake admin email: The email address of the Snowflake administrator in your company. We will send instructions to be done in Snowflake to complete the integration to this email address.
4. Click **Connect**. It may take a few hours to complete the connection. You and your Snowflake admin will get an email when the connection is complete.
5. Once the connection is confirmed, generate the command query and run it.

> [!NOTE]
> Note:
> 
> By running this query, you are agreeing to Snowflake's [terms and conditions](https://www.snowflake.com/marketplace/standard-agreement/).

```plaintext
use role accountadmin;
CALL SYSTEM$ACCEPT_LEGAL_TERMS('DATA_EXCHANGE_LISTING','GZT0Z123IQGM');show shares like '%GONG%';

set database_name = 'GONG';
show shares like '%GONG%';
//Generates the command
SELECT ‘CREATE DATABASE ' || $database_name || ' FROM SHARE ' || "owner_account" || '.' ||
"name" FROM TABLE(RESULT_SCAN(LAST_QUERY_ID())); 

The generated command: 
CREATE DATABASE GONG FROM SHARE 
GRANT IMPORTED PRIVILEGES ON DATABASE GONG TO ROLE ;
```

A team member who manages and configures the Gong platform and handles CRM integrations, user provisioning, permissions, and system settings. [Find my Tech admin](/v1/docs/find-your-technical-or-business-admin).

Gong’s robust data sharing service that integrates Gong-enriched data with external data platforms- for deeper data analytics and advanced insights. Access to features depends on your [company’s plan and your assigned seat](/v1/docs/plans-and-seats).

## Related

- [Database design](/database-design.md)
- [Forecast and Gong user tables](/forecast-and-gong-user-tables.md)
