Caller’s and Owner’s Rights in Snowflake Stored Procedures

Spread the love

1. Introduction

The stored procedures in Snowflake runs either with caller’s rights or the owner’s rights which helps in defining the privileges with which the statements in the stored procedure executes. By default, when a stored procedure is created in Snowflake without specifying the rights with which it should be executed, it runs with owner’s rights.

In this article let us discuss what are caller’s rights and owner’s rights, the differences between the both and how to implement them in Snowflake stored procedures.

2. Caller’s Rights in Snowflake Stored Procedures

A caller’s rights stored procedure runs with the privileges of the role that called the stored procedure. The term “Caller” in this context refers to the user executing the stored procedure, who may or may not be the creator of the procedure.

Any statement that the caller could not execute outside the stored procedure cannot be executed inside the stored procedure with caller’s rights.

At the time of creation of stored procedure, the creator has to specify if the stored procedure runs with caller’s rights. The default is owner’s rights.

The syntax to create a stored procedure with caller’s rights is as shown below.

CREATE OR REPLACE PROCEDURE <procedure_name>()
  RETURNS <data_type>
  LANGUAGE SQL
  EXECUTE AS CALLER
AS
$$
  …
$$;

3. Owner’s Rights in Snowflake Stored Procedures

An Owner’s rights stored procedure runs with the privileges of the role that created the stored procedure. The term “Owner” in this context refers to the user who created the stored procedure, who may or may not be executing the procedure.

The primary advantage of Owner’s rights is that the owner can delegate the privileges to another role through stored procedure without actually granting privileges outside the procedure.

For example, if a user do not have access to clean up data in a table is granted access to a stored procedure (with owner’s rights) which does it. The user who do not have any privileges on table can clean up the data in the table by executing the stored procedure. But the same statements in the procedure when executed outside the procedure, cannot be executed by the user.

The syntax to create a stored procedure with owner’s rights is as shown below.

CREATE OR REPLACE PROCEDURE <procedure_name>()
  RETURNS <data_type>
  LANGUAGE SQL
  EXECUTE AS OWNER
AS
$$
  …
$$;

Note “EXECUTE AS OWNER” is optional. Even if the statement is not specified, the procedure is created with owner’s rights.

4. Difference between Caller’s and Owner’s Rights in Snowflake

The below are the differences between Caller’s and Owner’s Rights in Snowflake.

Caller’s RightsOwner’s Rights
Runs with the privileges of the caller.Runs with the privileges of the owner.
Inherit the current warehouse of the caller.Inherit the current warehouse of the caller.
Use the database and schema that the caller is currently using.Use the database and schema that the stored procedure is created in, not the database and schema that the caller is currently using.

5. Demonstration of Caller’s and Owner’s Rights

Let us understand how Caller’s and Owner’s Rights work with an example using ACCOUNTADMIN and SYSADMIN roles.

Using ACCOUNTADMIN role, let us create a table named Organization for demonstration.

USE ROLE ACCOUNTADMIN;
CREATE TABLE organization(id NUMBER, org_name VARCHAR(50));

When the table is queried using SYSADMIN role, it throws an errors as shown below since no grants on this table are provided to SYSADMIN.

USE ROLE SYSADMIN;
SELECT * FROM organization;
Output of querying table with SYSADMIN role

Let us create a stored procedure with Caller’s rights using ACCOUNTADMIN role to delete data from Organization table.

USE ROLE ACCOUNTADMIN;

CREATE OR REPLACE PROCEDURE sp_demo_callers_rights()
  RETURNS VARCHAR
  LANGUAGE SQL
  EXECUTE AS CALLER
AS
$$
  BEGIN
    DELETE FROM ORGANIZATION WHERE ID = '101';
    RETURN 'Data cleaned up from table.';
  END;
$$
;

The output of the caller’s rights stored procedure with ACCOUNTADMIN role is as below.

USE ROLE ACCOUNTADMIN;
CALL sp_demo_callers_rights();
Output of executing stored procedure with ACCOUNTADMIN role

Assign the grants to execute the stored procedure to the SYSADMIN role.

USE ROLE ACCOUNTADMIN;
GRANT USAGE ON PROCEDURE DEMO_DB.PUBLIC.sp_demo_callers_rights() TO ROLE SYSADMIN;

The output of the caller’s rights stored procedure with SYSADMIN role is as below.

USE ROLE SYSADMIN;
CALL sp_demo_callers_rights();
Output of executing caller's rights stored procedure with SYSADMIN role

Since the SYSADMIN role do not have any privileges on Organization table, the execution of procedure with caller’s rights also fails.

The owner of the stored procedure can change the procedure from an owner’s rights stored procedure to a caller’s rights stored procedure (or vice-versa) by executing an ALTER PROCEDURE command as shown below.

ALTER PROCEDURE sp_demo_callers_rights() EXECUTE AS OWNER;

The output of the owner’s rights stored procedure with SYSADMIN role is as below.

USE ROLE SYSADMIN;
CALL sp_demo_callers_rights();
Output of executing owner's rights stored procedure with SYSADMIN role

Though the SYSADMIN role do not have privileges on Organization table, the execution of the procedure which deletes data from the Organization table succeeds because the procedure executes with Owner’s rights.

Checkout other articles related to Snowflake Stored Procedures

Subscribe to our Newsletter !!

Related Articles:

  • Introduction to Snowflake Stored Procedures

    Stored procedures allow you to write procedural code that executes business logic by combining multiple SQL statements.

    READ MORE

  • Variables in Snowflake Stored Procedure

    A Variable is a named object which holds a value of a specific data type whose value can change during the stored procedure execution.

    READ MORE

  • EXECUTE IMMEDIATE in Snowflake Stored Procedures

    EXECUTE IMMEDIATE command in Snowflake executes SQL statements present in form a character string and returns the result.

    READ MORE

Leave a Comment

Related Posts