For our case, when first running the package, we are getting zero records from the tables such as `dbt_queries` and `query_history_enriched`. Reasons include two: 1. In our account, below views under "Snowflake" database give 0 records when querying: - snowflake.organization_usage.rate_sheet_daily - snowflake.organization_usage.remaining_balance_daily - snowflake.organization_usage.usage_in_currency_daily Reason of returning 0 record: https://community.snowflake.com/s/article/Empty-Organization-Usage-Views As the above views are source of stg views, stg views giving 0 records and impacting downstream as well. Not sure if some other users get the same, but it would be great if we can update the documentation and let people know. 2. Even after populating the above views, running the package again with `dbt run` still returns 0 records for `query_history_enriched`. This is because the dbt models are incremental and there is such a filtering condition: ``` {% if is_incremental() %} where end_time > (select dateadd(day, -{{ var('dbt_snowflake_monitoring_incremental_days', '3') }}, max(end_time)) from {{ this }}) {% endif %} ``` When running incremental, we are comparing end_time with the max end_time already in the existing table. In cases where the existing table has 0 record, this above filtering condition is basically doing ``` {% if is_incremental() %} where end_time > null {% endif %} ``` which will return nothing. Chatted with Ian through Intercom chat and understand this is a known bug pending fix.