Doug Beatty

Results 626 comments of Doug Beatty

Good find @andrea-montes-yello ! I think the fix could be as simple as updating this: https://github.com/dbt-labs/dbt-docs/blob/ac6670cad4eb60356b50eec23496aa56c6774635/src/app/services/code_service.js#L59 To this instead: ```js const rel = database + model.schema + "." + model.name;...

Supposing the user has [dbt-duckdb](https://pypi.org/project/dbt-duckdb/) installed, the [reprex](https://reprex.tidyverse.org/articles/reprex-dos-and-donts.html) ("reproducible example") is as simple as: `dbt_project.yml` ```yaml name: "my_dbt_project" version: "1.0.0" config-version: 2 profile: "sandcastle-duckdb" ``` `seeds/my_seed.csv` ```csv id,fruit 1,orange ```...

> In Fusion, `stg_zendesk__audit_log_tmp` shows up in the `manifest.json` with `"enabled":"false"`. > > In Core, the model isn't present at all? @dataders Is it exactly opposite of this?

Thanks for raising this idea @alejandrofm ! It sounds like one key use case here is when there is a centralized permission process that is granting and supervising permissions. In...

Just as our response to https://github.com/dbt-labs/dbt-core/issues/9056, rather than add new incremental strategies in dbt-core, we'd rather encourage the ecosystem through: Rather than add new incremental strategies in dbt-core, we'd rather...

@alejandrofm I think using a custom incremental strategy like above would achieve all the benefits you described, but please let me know if there's something unaddressed. The only thing is...

> I thought more people could benefit from something like this out of the box. We're not planning on adding more strategies out of the box, but we _do_ want...

Thanks for reporting this @CraigWilson-ZOE ! If you comment out the unit test completely, does it still give you that error? The SQL that is creating that syntax error looks...

@tsafacjo We're not yet sure if this is a bug in dbt-core or if the root cause is something else. If you're looking for a place to contribute to dbt,...

> I have tried with the super simple version and it passed without error. Okay! The next step is to try to isolate whichever piece(s) of your model that is...