MSCEWI2029

Queue table functionality is not supported.

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

Severity

Low

Description

This warning appears when a TABLE with the QUEUE attribute is migrated. The QUEUE keyword is removed because it is not supported in snowflake.

Code Example

Input Code:

CREATE MULTISET TABLE SAMPLE_TABLE,
QUEUE,
NO FALLBACK 
(
    COL1 INTEGER
);

Output Code:

/*** MSC-WARNING - MSCEWI2029 - QUEUE TABLE FUNCTIONALITY NOT SUPPORTED ***/
CREATE TABLE PUBLIC.SAMPLE_TABLE
(
    COL1 INTEGER
);

Recommendations

Last updated