SSC-EWI-TS0009
The following transaction may contain nested transactions and this is considered a complex pattern not supported in Snowflake.
Some parts in the output code are omitted for clarity reasons.
Severity
High
Description
This error is added to indicate when a transaction may contain nested transactions. In SQL Server, transactions can be nested. This means that it is possible to start a new transaction within an existing transaction. If after the first BEGIN statement, we execute another one, a new transaction will be opened and the current transaction count will be increased by one.
On the other hand this is not supported in Snowflake, what will happen is that the second BEGIN statement will be ignored and we will still have only one transaction. For more information please refer to SQL Server Transactions.
Code Example
Input Code:
Output Code:
Recommendations
In Snowflake nested transactions will not cause compilation errors, they will simply be ignored. You can access the assessment reports to check if nested transactions are present.
If you need more support, you can email us at snowconvert-support@snowflake.com
Related EWI
SSC-FDM-0020: Multiple result sets are returned in temporary tables
SSC-EWI-0001: Unrecognized token on the line of the source code.
SSC-EWI-0040: Statement Not Supported.
Last updated