Schema:

ORGANIZATION_USAGE

MARKETPLACE_PAID_USAGE_DAILY ViewΒΆ

You can use the MARKETPLACE_PAID_USAGE_DAILY view in the ORGANIZATION_USAGE schema to query the daily history of your usage of paid listings. Retrieve the count of queries executed by users in your account on individual listings, with the charges for the usage.

The view includes this history for all accounts in your Snowflake organization.

ColumnsΒΆ

Column Name

Data Type

Description

REPORT_DATE

DATETIME

Date when the report was run.

USAGE_DATE

DATETIME

Usage date.

PROVIDER_NAME

VARCHAR

Provider display name from listing.

PROVIDER_ACCOUNT_NAME

VARCHAR

Account name of the provider.

PROVIDER_ACCOUNT_LOCATOR

VARCHAR

Account locator of the provider account. For more information about account identifiers, see account identifier.

PROVIDER_ORGANIZATION_NAME

VARCHAR

Organization name for the provider.

CONSUMER_ACCOUNT_NAME

VARCHAR

Name of the consumer account.

CONSUMER_ACCOUNT_LOCATOR

VARCHAR

Account locator of the consumer account. For more information about account identifiers, see account identifier.

LISTING_DISPLAY_NAME

VARCHAR

Display name of the listing.

LISTING_GLOBAL_NAME

VARCHAR

Global name of the listing.

DATABASE_NAME

VARCHAR

Name of the database associated with this listing.

PO_NUMBER

VARCHAR

Purchase order number associated with this listing.

PRICING_PLAN

VARIANT

JSON value that includes the specifics of the pricing plan. Only included in the output for paid usage.

CHARGE_TYPE

VARCHAR

Type of charge assessed. For more information about the components of the pricing model for paid listings, see Paid listings pricing models.

Possible values:

  • SAMPLE: No charge. The queries were executed within the trial period for the listing.

  • FIXED: Per-month charges.

  • GRACE: No charge. The queries were counted among the free queries allowed in the calendar month (after the first query) before the per-query charge is applied.

  • VARIABLE: Per-query charges.

  • MAX_VARIABLE_USAGE_REACHED: No charge. The queries were executed after the maximum total monthly cost for this listing was reached.

Additional values are part of preview functionality:

  • NON_MONETIZABLE_BILLING_EVENTS: No charge. These billable events were emitted during trial usage of a data product, or for billable events not part of a pricing plan on the listing.

  • MONETIZABLE_BILLING_EVENTS: Custom event billing charges.

  • MAX_BILLING_EVENT_USAGE_REACHED: No charge. These billable events were emitted after the maximum total monthly cost for the listing was reached.

UNITS

VARCHAR

Number of queries included in the charge. For a FIXED charge, this value is 1.

UNIT_PRICE

DECIMAL

Per-month or per-query fee. For sample data, the value is 0.

CHARGE

DECIMAL

Total charge for this line item on this day (without tax).

CURRENCY

VARCHAR

USD

Usage NotesΒΆ

  • Latency for the view can be up to 24 hours (1 day).

  • The data is retained for 365 days (1 year).

ExamplesΒΆ

Retrieve the total amount charged per month and listing:

SELECT
  DATE_TRUNC(MONTH, usage_date) AS usage_month
, listing_display_name
, listing_global_name
, SUM(charge) AS charge
FROM snowflake.organization_usage.marketplace_paid_usage_daily
GROUP BY 1,2,3;
Copy

Retrieve the total amount charged per month, listing, and consumer account:

SELECT
  DATE_TRUNC(MONTH, usage_date) AS usage_month
, consumer_account_name
, consumer_account_locator
, listing_display_name
, listing_global_name
, SUM(charge) AS charge
FROM snowflake.organization_usage.marketplace_paid_usage_daily
GROUP BY 1,2,3,4,5;
Copy