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:

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 TABLE TableExample (
ColumnExample NUMBER(38, 18)
)
COMMENT = '{"origin":"sf_sc","name":"snowconvert","version":{"major":1, "minor":0},"attributes":{"component":"teradata"}}'
;

Recommendations

Last updated