This is a deprecated version of the SnowConvert documentation, please visit the official site .
Global temporary tables are considered a complex pattern, due to the fact they can come in several variations, as indicated in .
CREATE OR REPLACE GLOBAL TEMPORARY TABLE GLOBAL_TEMP_TABLE
(
col3 INTEGER,
col4 VARCHAR(50)
);
/*** MSC-WARNING - MSCCP0002 - GLOBAL TEMPORARY TABLE FUNCTIONALITY NOT SUPPORTED. ***/
CREATE OR REPLACE TABLE GLOBAL_TEMP_TABLE
(
col3 INTEGER,
col4 VARCHAR(50)
);