EXECUTE DBT PROJECT¶
Executes the specified dbt project object or the dbt project in a Snowflake workspace using the dbt command and command-line options specified.
- See also:
CREATE DBT PROJECT, ALTER DBT PROJECT, DESCRIBE DBT PROJECT, DROP DBT PROJECT, SHOW DBT PROJECTS
Syntax¶
Executes the dbt project object with the specified name.
Variant syntax¶
Executes the dbt project that is saved in a workspace with the specified workspace name. The user who owns the workspace must be the user who runs this command variant.
Required parameters¶
nameWhen executing a dbt project object, specifies the name of the dbt project object to execute.
When executing a dbt project by using the FROM WORKSPACE option, specifies the name of the workspace for dbt Projects on Snowflake. The workspace name is always specified in reference to the
publicschema in the user’s personal database, which is indicated byuser$.We recommend enclosing the workspace name in double quotes because workspace names are case-sensitive and can contain special characters.
The following example shows a workspace name reference:
user$.public."My dbt Project Workspace"
Optional parameters¶
ARGS = '[ dbt_command ] [ --dbt_cli_option option_value_1 [ ... ] [ ... ] ]'Specifies the dbt command and supported command-line options to run when the dbt project executes. This is a literal string that must conform to the syntax and requirements of dbt CLI commands.
If no value is specified, the dbt project executes with the dbt command and command-line options specified in the dbt project object definition. If you specify dbt CLI options without specifying a dbt command, the dbt
runcommand executes by default.Default: No value
DBT_VERSION = 'version_number'Specifies a version for the dbt Project.
Default: When you execute a dbt project, the system uses the default version you specified when creating the dbt project. If none was specified, the system uses
1.9.4by default.For more information, see Supported dbt Core versions for dbt Projects on Snowflake.
PROJECT_ROOT = 'subdirectory_path'Specifies the subdirectory path to the
dbt_project.ymlfile within the dbt project object or workspace. This parameter is only supported when executing a dbt project by using the FROM WORKSPACE option.If no value is specified, the dbt project executes with the
dbt_project.ymlfile in the root directory of the dbt project object.If no
dbt_project.ymlfile exists in the root directory or in the PROJECT_ROOT subdirectory, an error occurs.Default: No value
Output¶
Column |
Description |
|---|---|
|
|
|
Any exception message returned by the dbt project execution. If the dbt project executes successfully, the string |
|
The standard output returned by the dbt project execution. |
|
The URL of the output archive that contains output files of the dbt project execution. This includes log files and artifacts that dbt writes to the |
Access control requirements¶
A role used to execute this SQL command must have at least one of the following privileges at a minimum:
Privilege |
Object |
|---|---|
USAGE |
dbt project |
Operating on an object in a schema requires at least one privilege on the parent database and at least one privilege on the parent schema.
For instructions on creating a custom role with a specified set of privileges, see Creating custom roles.
For general information about roles and privilege grants for performing SQL actions on securable objects, see Overview of Access Control.
Note
The dbt command specified in EXECUTE DBT PROJECT runs with the privileges of the role specified in the outputs block of the projects profiles.yml file. Operations are further restricted to only those privileges granted to the Snowflake user calling EXECUTE DBT PROJECT. Both the user and the role specified must have the required privileges to use the warehouse, perform operations on the database and schema specified in the project’s profiles.yml file, and perform operations on any other Snowflake objects that the dbt model specifies.
Examples¶
Default run command with target and models specified¶
Execute a dbt run targeting the dev profile in the dbt_project.yml file in the root directory of the dbt project object and selecting three models from the project DAG. No run command is explicitly specified and is executed by default.
Explicit test command with target and models specified¶
Execute a dbt test command targeting the prod profile in the dbt_project.yml file in the root directory of the dbt project object and selecting three models from the project DAG.
Explicit run command with downstream models specified¶
Execute a dbt run command targeting the dev profile in the dbt_project.yml file and selecting all models downstream of the simple_customers model using the dbt + notation.
Run and test dbt projects using production tasks¶
Create a task for a production dbt target that executes a dbt run command on a six-hour interval. Then create a task that executes the dbt test command after each dbt run task completes. The EXECUTE DBT PROJECT command for each task targets the prod profile in the dbt_project.yml file in the root directory of the dbt project object.
Override the project’s pinned version at execution time for testing or temporary needs¶
my_dbt_project is pinned to 1.9.4. This execution overrides the dbt project’s default 1.9.4 version: