-
I have nearly 2000 dbt models (incremental, non-incremental & views). Upon giving "dbt docs generate" command to view the model graph, I get the following error. `
However, when I build and run the raw model Here is the second error after building
Is there any way to solve this problem? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @ghkgupta, this seems to be a similar issue like in this discussion. The proposed solution there is to first do a compile against a target where all objects are available, then do a Let me know if this helps! Kind regards |
Beta Was this translation helpful? Give feedback.
Hi @ghkgupta,
this seems to be a similar issue like in this discussion.
The proposed solution there is to first do a compile against a target where all objects are available, then do a
dbt docs generate --no-compile.
Let me know if this helps!
Kind regards
Theo