Skip to content

Data Sharing Across Organisations with Snowflake

Published: at 10:00 AM

In this article we explore how Snowflake’s Secure Data Sharing and the Snowflake Marketplace enable seamless collaboration between organisations. We’ll look at the mechanics of secure shares, the difference between private and public options, how publishing to the Marketplace works, and finish with a practical example and checklist for responsible sharing.

Features change from time to time with new capabilities being added regularly. It is recommended that you review the documentation for the latest on data sharing.

Table of Contents

Open Table of Contents

Understanding Secure Data Sharing

How Secure Shares Work

A share in Snowflake is a metadata object that specifies which databases, schemas, and objects (tables, views, UDFs) are made available to another Snowflake account. No data is copied; instead, consumers query the data directly in place, ensuring they always see the latest version.

Key characteristics

Private vs Public Shares

Publishing to the Snowflake Marketplace

The Snowflake Marketplace is a central hub where data providers can publish public shares, either free or commercial.
Benefits include:

Publishing involves registering as a provider, preparing data in a clean, well-documented schema, and creating a managed listing that links to your share.

Example: Creating a Share

Here’s a simplified SQL example of creating a secure share:

-- 1) Create the share object
CREATE SHARE sales_share;

-- 2) Add objects to the share
GRANT USAGE ON DATABASE analytics TO SHARE sales_share;
GRANT USAGE ON SCHEMA analytics.sales TO SHARE sales_share;
GRANT SELECT ON TABLE analytics.sales.monthly_revenue TO SHARE sales_share;

-- 3) Grant to a specific consumer account
ALTER SHARE sales_share ADD ACCOUNT = 'org12345.account56789';

On the consumer side, the recipient can create a database from the share:

CREATE DATABASE shared_sales FROM SHARE provider_org.sales_share;

At this point, the consumer queries shared_sales as if it were their own database—without holding a physical copy.

Checklist: Sharing Responsibly

When sharing data across organisations, consider the following best practices:

Conclusion

Snowflake’s secure data sharing model transforms how organisations collaborate. By avoiding data duplication and enabling real-time access, it creates efficiencies while upholding governance. Whether you are sharing privately with trusted partners or publishing to a wider audience via the Marketplace, a disciplined approach ensures that data sharing remains both strategic and secure.