Create your tables as TRANSIENT if you don't want to give your DBA a heart attack, but beware, there is no Fail-safe period for TRANSIENT tables. For more info in temporary and transient tables you can check the @SnowflakeDB docs:
docs.snowflake.net/manuals/u…#SnowflakeTips#sqlhelp
@SnowflakeDB has neither cursor or DO WHILE. I managed to build an accumulator by nesting SELECTs and creating
a new column to store the accumulated value instead of a variable.
#SnowflakeTips#Data#SQL#SQLtips
Para generar un ID único en un SELECT como si fuera el IDENTITY de una tabla se puede usar la función ROW_NUMBER ordenadopor toda la clave de la tabla. #SQLtip recien aprendido. #sqlhelp@SnowflakeDB#SnowflakeTips