Table Attributes

Snowflake @@Transient Reference

The @@Transient attribute is the equivalent to CREATE TRANSIENT in Snowflake.

Type System Hints

@@Transient can only be used on tables that don't have the @@Temporary attribute.

Parameters

This attribute has no parameters.

Example

table Test {
  id VarChar(36) @PrimaryKey
  @@Transient
}
Previous
Table Attributes