Skip to main content
Skip table of contents

STORAGE.DYNAMIC_TABLE_INITIALIZE_BEHAVIOR

Target database: Snowflake

STORAGE.DYNAMIC_TABLE_INITIALIZE_BEHAVIOR option enables:

Definition of the wanted dynamic table initialization behavior. Based on Snowflake documentation the options are:

  • ON_CREATE

  • ON_SCHEDULE


See also:


Usage

OPTION
STORAGE.DYNAMIC_TABLE_INITIALIZE_BEHAVIOR: String

Default: empty, Snowflake will interpret this as ON_CREATE.


Notes

Supports only Snowflake Dynamic table


Examples

Snowflake: Set the STORAGE.DYNAMIC_TABLE_INITIALIZE_BEHAVIOR

Setting STORAGE.DYNAMIC_TABLE_INITIALIZE_BEHAVIOR for an Dynamic table (e.g. publish.F_TRIP):

OPTION
STORAGE.DYNAMIC_TABLE_INITIALIZE_BEHAVIOR: ON_SCHEDULE

DDL generated by Agile Data Engine:

SQL
CREATE DYNAMIC TABLE publish.F_TRIP (
  ...
)
..
INITIALIZE = ON_SCHEDULE
...
AS
  SELECT ...;
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.