MSCEWI2017

Global temporary table trace functionality not supported.

This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.

Severity

Low

Description

This message is shown when SnowConvert finds a Create Table with the GLOBAL TEMPORARY TRACE option. Since it is not supported in Snowflake, it is removed and a message is added.

Code Example

Input Code:

CREATE GLOBAL TEMPORARY TRACE TABLE TableExample
(
ColumnExample Number
)

Output Code:

/*** MSC-WARNING - MSCEWI2017 - GLOBAL TEMPORARY TABLE TRACE FUNCTIONALITY NOT SUPPORTED ***/
CREATE TABLE PUBLIC.TableExample
(
ColumnExample Number(38, 19)
);

Recommendations

Last updated