9.40 Release Notes: Preview¶
Attention
Content on this page is available in advance of the completion of the 9.40 release, which is currently either pending or in progress and is scheduled for completion on December 17 (subject to change).
Features, updates, or behavior changes described on this page might not be available in your accounts until the release is complete.
For updates to these release notes, see Release notes change log.
New features¶
Notifications for data quality incidents (Preview)¶
Snowflake can automatically send a notification when there is a data quality incident in a database. A data quality incident occurs when the return value of a data metric function (DMF) violates an expectation or constitutes an anomaly.
Notifications can be sent via email or through an external system like Slack, Teams, and PagerDuty.
SQL updates¶
Semantic views: Using standard SQL clauses to query semantic views (Preview)¶
You can now use standard SQL clauses in a SELECT statement to query a semantic view.
This feature is in Preview.
You can just specify the name of the semantic view in the FROM clause, rather than specifying the SEMANTIC_VIEW clause. For example, the following query specifies the SEMANTIC_VIEW clause:
SELECT * FROM SEMANTIC_VIEW(
tpch_analysis
DIMENSIONS customer.customer_market_segment
METRICS orders.order_average_value
)
ORDER BY customer_market_segment;
The following statement demonstrates how to execute the same query without specifying the SEMANTIC_VIEW clause:
SELECT customer_market_segment, AGG(order_average_value)
FROM tpch_analysis
GROUP BY customer_market_segment
ORDER BY customer_market_segment;
Data governance updates¶
Release notes change log¶
Announcement |
Update |
Date |
|---|---|---|
Release notes |
Initial publication (preview) |
Dec 15, 2025 |
Semantic views: Using standard SQL clauses to query semantic views (Preview) |
Added to SQL updates |
Dec 16, 2025 |