diff --git a/README.md b/README.md index 1d18183e..70031d05 100644 --- a/README.md +++ b/README.md @@ -61,10 +61,10 @@ To add/update a model's snowflake tags, add/modify the `meta` model property und ) }} ``` -By default, model tags are not pushed to snowflake on each load. You can push a tag update for a model by specifying the `UPDATE_SNOWFLAKE_TAGS` project variable during a run. **All views MUST be run with this setting otherwise the existing tags will be erased because DBT is re-creating the view each time it runs.** +By default, model tags are pushed to Snowflake on each DBT run. You can disable this by setting the `UPDATE_SNOWFLAKE_TAGS` project variable to `False` during a run. ``` -dbt run --var '{"UPDATE_SNOWFLAKE_TAGS":True}' -s models/core/core__fact_swaps.sql +dbt run --var '{"UPDATE_SNOWFLAKE_TAGS":False}' -s models/core/core__fact_swaps.sql ``` ### Querying for existing tags on a model in snowflake diff --git a/dbt_project.yml b/dbt_project.yml index 5991a7ce..40026ce4 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -54,4 +54,4 @@ models: vars: "dbt_date:time_zone": GMT UPDATE_SNOWFLAKE_TAGS: False - UPDATE_UDFS_AND_SPS: False \ No newline at end of file + UPDATE_UDFS_AND_SPS: True \ No newline at end of file