Skip to main content

Parsing

Partial Parsing

The PARTIAL_PARSE config can turn partial parsing on or off in your project. See the docs on parsing for more details.

profiles.yml

config:
partial_parse: true

Usage
dbt --no-partial-parse run

Static parser

The STATIC_PARSER config can enable or disable the use of the static parser. See the docs on parsing for more details.

profiles.yml

config:
static_parser: true

Experimental parser

With the USE_EXPERIMENTAL_PARSER config, you can opt into the latest and greatest experimental version of the static parser, which is still being sampled for 100% correctness. See the docs on parsing for more details.

profiles.yml

config:
use_experimental_parser: true

0