EXECUTE IMMEDIATE FROM¶

EXECUTE IMMEDIATE FROM executes the SQL statements specified in a file in a stage. The file can contain SQL statements or Snowflake Scripting blocks. The statements must be syntactically correct SQL statements.

You can use the EXECUTE IMMEDIATE FROM command to execute the statements in a file from any Snowflake session.

This feature provides a mechanism to control the deployment and management of your Snowflake objects and code. For example, you can execute a stored script to create a standard Snowflake environment for all your accounts. The configuration script might include statements that create users, roles, databases, and schemas for every new account.

Jinja2 templating¶

EXECUTE IMMEDIATE FROM can also execute a template file using the Jinja2 templating language. A template can contain variables and expressions, enabling the use of loops, conditionals, variable substitution, macros, and more.

For more information about the templating language, see the Jinja2 documentation.

The template file to be executed must be:

  • A syntactically valid Jinja2 template.

  • Located in a stage or Git repository.

  • Able to render syntactically valid SQL statements.

Templating enables more flexible control structures and parametization using environment variables. For example, you can use a template to dynamically choose the deployment target of the objects defined in the script. To use a template to render a SQL script, use the templating directive or add a USING clause with at least one template variable.

Templating directive¶

You can use either one of the two templating directives.

The recommended directive uses valid SQL syntax:

--!jinja
Copy

Optionally, you can use the alternative directive:

#!jinja
Copy

Note

Only a byte order mark and up to 10 whitespace characters (newlines, tabs, spaces) may be placed in front of the directive. Any characters that come after the directive on the same line will be ignored.

See also:

EXECUTE IMMEDIATE

Syntax¶

EXECUTE IMMEDIATE
  FROM { absoluteFilePath | relativeFilePath }
  [ USING ( <key> => <value> [ , <key> => <value> [ , ... ] ]  )  ]
Copy

Where:

absoluteFilePath ::=
   @[ <namespace>. ]<stage_name>/<path>/<filename>
Copy
relativeFilePath ::=
  '[ / | ./ | ../ ]<path>/<filename>'
Copy

Required parameters¶

Absolute file path (absoluteFilePath)¶

namespace

Database and/or schema in which the internal or external stage resides, in the form of database_name.schema_name or schema_name. The namespace is optional if a database and schema are currently in use for the user session; otherwise, it is required.

stage_name

Name of the internal or external stage.

path

Case-sensitive path to the file in the stage.

filename

Name of the file to execute. It must contain syntactically correct and valid SQL statements. Each statement must be separated by a semicolon.

Relative file path (relativeFilePath)¶

path

Case-sensitive relative path to the file in the stage. Relative paths support established conventions such as a leading / to indicate the root of a stage’s file system, ./ to refer to the current directory (the directory the parent file is located in) and ../ to refer to the parent directory. For more information, see Usage notes.

filename

Name of the file to execute. It must contain syntactically correct and valid SQL statements. Each statement must be separated by a semicolon.

Optional parameters¶

USING ( <key> => <value> [ , <key> => <value> [ , ... ] ]  )

Allows you to pass one or more key-value pairs that can be used to parameterize template expansion. The key-value pairs must form a comma-separated list.

When the USING clause is present, the file is first rendered as a Jinja2 template before being executed as a SQL script.

Where:

  • key is the name of the template variable. The template variable name can optionally be enclosed in double quotes (").

  • value is the value to assign to the variable in the template. String values must be enclosed in ' or $$. For an example, see Templating usage notes.

Returns¶

EXECUTE IMMEDIATE FROM returns:

  • The result of the last statement in the file if all statements are successfully executed.

  • The error message, if any statement in the file failed.

    If there is an error in any statement in the file, the EXECUTE IMMEDIATE FROM command fails and returns the error message of the failed statement.

    Note

    If the EXECUTE IMMEDIATE FROM command fails and returns an error message, any statements in the file prior to the failed statement have successfully completed.

Access control requirements¶

  • The role used to execute the EXECUTE IMMEDIATE FROM command must have the USAGE (external stage) or READ (internal stage) privilege on the stage where the file is located.

  • The role used to execute the file can only execute the statements in the file for which it has privileges. For example, if there is a CREATE TABLE statement in the file, the role must have the necessary privileges to create a table in the account or the statement fails.

Note that operating on any object in a schema also requires the USAGE privilege on the parent database and 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.

Usage notes¶

  • The SQL statements in a file to be executed can include EXECUTE IMMEDIATE FROM statements:

    • Nested EXECUTE IMMEDIATE FROM statements can use relative file paths.

      Relative paths are evaluated in respect to the stage and file path of the parent file. If the relative file path starts with /, the path starts at the root directory of the stage containing the parent file.

      For an example, see Examples.

    • Relative file paths must be enclosed in single quotes (') or $$.

    • The maximum execution depth for nested files is 5.

  • Absolute file paths can optionally be enclosed in single quotes (') or $$.

  • The file to be executed cannot be larger than 10MB in size.

  • The file to be executed must be encoded in UTF-8.

  • The file to be executed must be uncompressed. If you use the PUT command to upload a file to an internal stage, you must explicitly set the AUTO_COMPRESS parameter to FALSE.

    For example, upload my_file.sql to my_stage:

    PUT file://~/sql/scripts/my_file.sql @my_stage/scripts/
      AUTO_COMPRESS=FALSE;
    
    Copy
  • The execution of all files in a directory is not supported. For example, EXECUTE IMMEDIATE FROM @stage_name/scripts/ results in an error.

Templating usage notes¶

  • Variable names in templates are case-sensitive.

  • The template variable name can be optionally enclosed in double quotes. Enclosing the variable name can be useful if any reserved keywords are used as variable names.

  • The following parameter types are supported in the USING clause:

    • String. Must be enclosed by ' or $$. For example, USING (a => 'a', b => $$b$$).

    • Number (decimal and integer). For example, USING (a => 1, b => -1.23).

    • Boolean. For example, USING (a => TRUE, b => FALSE).

    • NULL. For example, USING (a => NULL).

      Note

      The Jinja2 templating engine interprets a NULL value as the Python NoneType type.

    • Session variables. For example, USING (a => $var). Only session variables holding values of supported data types are allowed.

    • Bind variables. For example, USING (a => :var). Only bind variables holding values of supported data types are allowed. You can use bind variables to pass stored procedure arguments to a template.

  • Currently the maximum result size for template rendering is 90 KB.

  • Templates are rendered using the Jinja2 version 3.1.2 templating engine.

Troubleshooting EXECUTE IMMEDIATE FROM Errors¶

This section contains some common errors that result from an EXECUTE IMMEDIATE FROM statement and how you can resolve them.

File Errors¶

Error

001501 (02000): File '<directory_name>' not found in stage '<stage_name>'.

Cause

There are multiple causes for this error:

  • The file does not exist.

  • The file name is the root of a directory. For example @stage_name/scripts/.

Solution

Verify the name of the file and confirm the file exists. Executing all the files in a directory is not supported.

Error

001503 (42601): Relative file references like '<filename.sql>' cannot be used in top-level EXECUTE IMMEDIATE calls.

Cause

The statement was executed using a relative file path outside of a file execution.

Solution

A relative file path can only be used in EXECUTE IMMEDIATE FROM statements in a file. Use the absolute file path for the file. For more information, see Usage notes.

Error

001003 (42000): SQL compilation error: syntax error line <n> at position <m> unexpected '<string>'.

Cause

The file contains SQL syntax errors.

Solution

Fix the syntax errors in the file and reupload the file to the stage.

Stage Errors¶

Error

002003 (02000): SQL compilation error: Stage '<stage_name>' does not exist or not authorized.

Cause

The stage does not exist or you do not have access to the stage.

Solution

  • Verify the name of the stage and confirm the stage exists.

  • Execute the statement using a role that has the required privileges to access the stage. For more information, see Access control requirements.

Access Control Errors¶

Error

003001 (42501): Uncaught exception of type 'STATEMENT_ERROR' in file <file_name> on line <n> at position <m>:
SQL access control error: Insufficient privileges to operate on schema '<schema_name>'

Cause

The role used to execute the statement does not have the privileges required to execute some or all of the statements in the file.

Solution

Use a role that has the appropriate privileges to execute the statements in the file. For more information, see Access control requirements.

See also: Stage Errors.

Templating errors¶

Error

001003 (42000): SQL compilation error:
syntax error line [n] at position [m] unexpected '{'.

Cause

The file contains templating constructs (for example, {{ table_name }}) but is not rendered using the templating engine. If the template is not rendered, the lines of text in the template are executed as SQL statements. The templating constructs in the file are likely to result in SQL syntax errors.

Solution

Add a templating directive or re-execute the statement with the USING clause and specify at least one template variable.

Error

000005 (XX000): Python Interpreter Error:
jinja2.exceptions.UndefinedError: '<key>' is undefined
in template processing

Cause

If any variables used in the template are left unspecified in the USING clause, an error occurs.

Solution

Verify the names and number of variables in the template and update the USING clause to include values for all template variables.

Error

001510 (42601): Unable to use value of template variable '<key>'

Cause

The value for the variable key is an unsupported type.

Solution

Verify that you are using a supported parameter type for the template variable value. For more information, see the Templating usage notes.

Examples¶

Basic example¶

This example executes the file create-inventory.sql located in stage my_stage.

  1. Create a file named create-inventory.sql with the following statements:

    CREATE OR REPLACE TABLE my_inventory(
      sku VARCHAR,
      price NUMBER
    );
    
    EXECUTE IMMEDIATE FROM './insert-inventory.sql';
    
    SELECT sku, price
      FROM my_inventory
      ORDER BY price DESC;
    
    Copy
  2. Create a file named insert-inventory.sql with the following statements:

    INSERT INTO my_inventory
      VALUES ('XYZ12345', 10.00),
             ('XYZ81974', 50.00),
             ('XYZ34985', 30.00),
             ('XYZ15324', 15.00);
    
    Copy
  3. Create an internal stage my_stage:

    CREATE STAGE my_stage;
    
    Copy
  4. Upload both local files to the stage using the PUT command:

    PUT file://~/sql/scripts/create-inventory.sql @my_stage/scripts/
      AUTO_COMPRESS=FALSE;
    
    PUT file://~/sql/scripts/insert-inventory.sql @my_stage/scripts/
      AUTO_COMPRESS=FALSE;
    
    Copy
  5. Execute the create-inventory.sql script located in my_stage:

    EXECUTE IMMEDIATE FROM @my_stage/scripts/create-inventory.sql;
    
    Copy

    Returns:

    +----------+-------+
    | SKU      | PRICE |
    |----------+-------|
    | XYZ81974 |    50 |
    | XYZ34985 |    30 |
    | XYZ15324 |    15 |
    | XYZ12345 |    10 |
    +----------+-------+
    

A simple template example¶

  1. Create a template file setup.sql with two variables and the templating directive:

    --!jinja
    
    CREATE SCHEMA {{env}};
    
    CREATE TABLE RAW (COL OBJECT)
        DATA_RETENTION_TIME_IN_DAYS = {{retention_time}};
    
    Copy
  2. Create a stage — optional if you already have a stage to which you can upload files.

    For example, create an internal stage in Snowflake:

    CREATE STAGE my_stage;
    
    Copy
  3. Upload the file to your stage.

    For example, use the PUT command from your local environment to upload file setup.sql to stage my_stage:

    PUT file://path/to/setup.sql @my_stage/scripts/
      AUTO_COMPRESS=FALSE;
    
    Copy
  4. Execute the file setup.sql:

    EXECUTE IMMEDIATE FROM @my_stage/scripts/setup.sql
        USING (env=>'dev', retention_time=>0);
    
    Copy

A template example with a conditional and loop¶

  1. Create a template file and include the templating directive.

    For example, create a file setup-env.sql in your local environment:

    --!jinja2
    
    {% if DEPLOYMENT_TYPE == 'prod' %}
      {% set environments = ['prod1', 'prod2'] %}
    {% else %}
      {% set environments = ['dev', 'qa', 'staging'] %}
    {% endif %}
    
    {% for environment in environments %}
      CREATE DATABASE {{ environment }}_db;
      USE DATABASE {{ environment }}_db;
      CREATE TABLE {{ environment }}_orders (
        id NUMBER,
        item VARCHAR,
        quantity NUMBER);
      CREATE TABLE {{ environment }}_customers (
        id NUMBER,
        name VARCHAR);
    {% endfor %}
    
    Copy
  2. Create a stage — optional if you already have a stage to which you can upload files.

    For example, create an internal stage in Snowflake:

    CREATE STAGE my_stage;
    
    Copy
  3. Upload the file to your stage.

    For example, use the PUT command from your local environment to upload file setup-env.sql to stage my_stage:

    PUT file://path/to/setup-env.sql @my_stage/scripts/
      AUTO_COMPRESS=FALSE;
    
    Copy
  4. Execute the file setup-env.sql:

    EXECUTE IMMEDIATE FROM @my_stage/scripts/setup-env.sql
      USING (DEPLOYMENT_TYPE => 'staging');
    
    Copy