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
CREATE OR REPLACE GLOBAL TEMPORARY TABLE GLOBAL_TEMP_TABLE
(
col3 INTEGER,
col4 VARCHAR(50)
);
Output Code
--** 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
If you need more support, you can email us at [email protected]
Last updated