SSC-FDM-0009

GLOBAL TEMPORARY TABLE functionality not supported.

Description

Global temporary tables are considered a complex pattern, due to the fact they can come in several variations, as indicated in Snowflake's documentation.

Example Code

Input Code

IN -> Oracle_01.sql
CREATE OR REPLACE GLOBAL TEMPORARY TABLE GLOBAL_TEMP_TABLE
(
    col3 INTEGER,
    col4 VARCHAR(50)
);

Output Code

OUT -> Oracle_01.sql
--** SSC-FDM-0009 - GLOBAL TEMPORARY TABLE FUNCTIONALITY NOT SUPPORTED. **
CREATE OR REPLACE TABLE GLOBAL_TEMP_TABLE
    (
        col3 INTEGER,
        col4 VARCHAR(50)
    )
COMMENT = '{"origin":"sf_sc","name":"snowconvert","version":{"major":1, "minor":0},{"attributes":{"component":"oracle"}}'
;

Recommendations

Last updated