Schema:

DATA_SHARING_USAGE

RESHARED_LISTING_CONSUMPTION_DAILY view

This view in the DATA_SHARING_USAGE schema can be used to track resharing activity for listings published in a data exchange or the Snowflake Marketplace. The view returns a record for each resharer account that has active reshares of a listing for a given date.

Use this view to:

  • Identify which accounts are resharing your listings.
  • Monitor the number of active reshares per listing over time.
  • Understand the geographic distribution of resharing activity by region and region group.

Columns

RESHARED_LISTING_CONSUMPTION_DAILY

FieldTypeDescription
EVENT_DATEDATEDate of the reshared listing consumption.
EXCHANGE_NAMEVARCHAR

Name of the data exchange or the Snowflake Marketplace to which the listing belongs.

LISTING_NAMEVARCHARIdentifier for the listing that was reshared.
LISTING_DISPLAY_NAMEVARCHARDisplay name of the listing.
LISTING_GLOBAL_NAMEVARCHAR

Global name of the listing. Unique for each listing and is used to create the listing URL.

PROVIDER_ACCOUNT_LOCATORVARCHARAccount locator of the data product owner (the provider).
PROVIDER_ACCOUNT_NAMEVARCHARAccount name of the data product owner (the provider).
RESHARER_REGION_GROUPVARCHARRegion group where the resharer account is located.
RESHARER_SNOWFLAKE_REGIONVARCHARSnowflake Region where the resharer account is located.
RESHARER_ACCOUNT_LOCATORVARCHARAccount locator of the account that reshared the listing.
RESHARER_ACCOUNT_NAMEVARCHARAccount name of the account that reshared the listing.
RESHARER_ORGANIZATION_NAMEVARCHAROrganization name of the account that reshared the listing.
NUMBER_OF_ACTIVE_RESHARESNUMBERTotal number of active reshares of the listing by the resharer on the given date.

Usage notes

  • Latency for the view may be up to 2 days.
  • The data is retained for 365 days (1 year).
  • The view only returns data for listings owned by the current account.
  • Internal Snowflake organization accounts are excluded from the results unless the querying account belongs to an internal organization.

Examples

Shows the total number of active reshares per listing for a given time period:

SELECT
  listing_name,
  listing_display_name,
  SUM(number_of_active_reshares) AS total_active_reshares
FROM snowflake.data_sharing_usage.reshared_listing_consumption_daily
WHERE event_date BETWEEN '2025-01-01' AND '2025-01-31'
GROUP BY ALL
ORDER BY total_active_reshares DESC;

Shows the top resharers by listing:

SELECT
  listing_name,
  listing_display_name,
  resharer_account_name,
  resharer_organization_name,
  SUM(number_of_active_reshares) AS total_active_reshares
FROM snowflake.data_sharing_usage.reshared_listing_consumption_daily
WHERE event_date BETWEEN '2025-01-01' AND '2025-01-31'
GROUP BY ALL
ORDER BY listing_name, total_active_reshares DESC;

Shows resharing activity by region:

SELECT
  resharer_snowflake_region,
  resharer_region_group,
  COUNT(DISTINCT resharer_account_locator) AS unique_resharers,
  SUM(number_of_active_reshares) AS total_active_reshares
FROM snowflake.data_sharing_usage.reshared_listing_consumption_daily
WHERE event_date BETWEEN '2025-01-01' AND '2025-01-31'
GROUP BY ALL
ORDER BY total_active_reshares DESC;