SSC-FDM-PG0008
Select into unlogged tables are not supported by Snowflake.
Description
Code Example
Input Code:
select column1
into UNLOGGED NewTable
from oldTable;Output Code:
CREATE TABLE IF NOT EXISTS NewTable AS
select column1
-- --** SSC-FDM-PG0008 - SELECT INTO UNLOGGED TABLES ARE NOT SUPPORTED BY SNOWFLAKE. **
-- into UNLOGGED NewTable
from
oldTable;Recommendations
Last updated
