SSC-EWI-TD0017

Global temporary table trace functionality not supported.

Important Notice: Migration of Documentation Website

Please be advised that our documentation website is currently undergoing a migration to a new platform. To ensure you have access to the most up-to-date information, we kindly request that you visit our new documentation website located at:

Official Snowflake Snowconvert Documentation

For any immediate assistance or if you encounter any issues, please contact our support team at [email protected].

Thank you for your understanding.

Severity

Low

Description

This EWI is shown when SnowConvert finds a Create Table with the GLOBAL TEMPORARY TRACE option. Review the following Teradata documentation about the TRACE functionality. Since it is not supported in Snowflake, it is removed.

Example Code

Teradata:

IN -> Teradata_01.sql
CREATE GLOBAL TEMPORARY TRACE TABLE TableExample
(
ColumnExample Number
)

Snowflake Scripting:

OUT -> Teradata_01.sql
!!!RESOLVE EWI!!! /*** SSC-EWI-TD0017 - GLOBAL TEMPORARY TABLE TRACE FUNCTIONALITY NOT SUPPORTED ***/!!!
CREATE OR REPLACE TABLE TableExample (
ColumnExample NUMBER(38, 18)
)
COMMENT = '{"origin":"sf_sc","name":"snowconvert","version":{"major":1, "minor":0},"attributes":{"component":"teradata"}}'
;

Recommendations

  • Note: It might be possible to replicate some tracing functionality in Snowflake by using an EVENT TABLE. Review the following Snowflake documentation about Loggin and Tracing.

  • If you need more support, you can email us at [email protected]

Last updated