SSC-EWI-TD0017
Global temporary table trace functionality not supported.
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:
CREATE GLOBAL TEMPORARY TRACE TABLE TableExample
(
ColumnExample Number
)
Snowflake Scripting:
!!!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 snowconvert-support@snowflake.com
Last updated