Skip to main content

Intro

Delta Sharing is an open protocol for secure real-time exchange of large datasets, which enables secure data sharing across products for the first time. It is a simple REST protocol that securely shares access to part of a cloud dataset. It leverages modern cloud storage systems, such as S3, ADLS, or GCS, to reliably transfer large datasets. With Delta Sharing, the user accessing shared data can directly connect to it through Pandas, Tableau, or dozens of other systems that implement the open protocol, without having to deploy a specific platform first. This reduces their access time from months to minutes, and makes life dramatically simpler for data providers who want to reach as many users as possible. The Data Platform still supports the traditional data exchange with files and Storage Accounts, but we now also offer Delta Sharing, an open protocol for data sharing that makes it easier and more secure to share data between organizations.
  • Improved security and data governance
  • Full and incremental data loads
  • Support for larger data sets
More info:
API reference: the REST endpoints behind this protocol — shares, schemas, tables, queries and change feeds — are documented under Delta Sharing Protocol.

Data exploration

Before using Delta Sharing, contact Lobyco to obtain an activation link - a unique, one-time-use URL that self-destructs after being accessed. By clicking this URL, you will download a configuration file containing all the necessary credentials.
Important: Ensure you save this file in a secure location, as it is essential for accessing the shared data.

Python

After you save the profile file, you can use it in the connector to access shared tables.

List all shared tables

List table metadata

Query table data using pandas

Query table changes using pandas

  • <starting-version>: optional. The starting version of the query, inclusive.
  • <ending-version>: optional. The ending version of the query, inclusive.
  • <starting-timestamp>: optional. The starting timestamp of the query. This is converted to a version created greater or equal to this timestamp. (format: yyyy-mm-dd hh:mm:ss[.fffffffff])
  • <ending-timestamp>: optional. The ending timestamp of the query. This is converted to a version created earlier or equal to this timestamp. (format: yyyy-mm-dd hh:mm:ss[.fffffffff])
Last modified on August 13, 2026