Snowflake Connection Information
  • 17 Jul 2024
  • PDF

Snowflake Connection Information

  • PDF

Article summary

summary

Help page for creating Snowflake connection information.

In addition, when using Snowflake, it is necessary to grant roles with the necessary permissions to users in advance.
For more information, see Permissions and Roles below.

entry

item nameindispensableContents
NameYesEnter the name of the connection information to be used inside TROCCO.
memoNoYou can enter notes for connection information to be used inside TROCCO.
hostYesEnter the Snowflake host.
For more information, see Host Name Entry Format.
userYesEnter your Snowflake username.
Authentication methodYesSelect the authentication method.
Select key pair authentication if used for data mart definitions.
(computer) passwordYesEnter if user/password authentication is selected as the authentication method.
Enter your Snowflake password.
private keyYesEnter when key pair authentication is selected as the authentication method.
Enter your Snowflake private key.
For more information, see About Key Pair Authentication.
rollNoEnter the role name assigned to the user.
If not entered, Snowflake's default settings are used. If there is no default setting, it must be entered.
For more information on roles, see Permissions and Roles.
JDBC DriverNoYou can select the version of the JDBC driver that connects to the Snowflake server.
  • 3.14.2
  • About JDBC driver version

    If a JDBC driver is not specified, the following versions are used, respectively.

    • For Snowflake, the transfer source: 3.13.5
    • For destination Snowflake: 3.13.26

    However, JDBC driver series 3.13 will no longer be supported by Snowflake as of October 31, 2023.
    Therefore, we recommend the use of the 3.14 series version.

    Host Name Input Format

    You can enter the information in one of the following formats

    • <LOCATOR>. <REGION>. <CLOUD>. snowflakecomputing.com
      - Input example: hm*****.ap-northeast-1.aws.snowflakecomputing.com
    • <ORGANIZATION>-<ACCOUNT_NAME>.snowflakecomputing.com
      - Input example : *******-km*****.snowflakecomputing.com
      - This input format is available only when user/password authentication is selected. Not available during key pair authentication.

    Each of the above elements can be viewed from the lower left corner of the Snowflake console screen.
    connection-configuration-snowflake_001

    About Key Pair Authentication

    A public and private key must be generated, and the public key must be set on the Snowflake side and the private key on the TROCCO side.

    Public and private key generation

    At the terminal, execute the following commands in order.

    1. Create a private key
      The generated private key should be entered into the private key field of TROCCO's Snowflake connection information.
    $ openssl genrsa 2048 | openssl pkcs8 -topk8 -inform PEM -out rsa_key.p8 -nocrypt
    
    1. Generate public key
    $ openssl rsa -in rsa_key.p8 -pubout -out rsa_key.pub
    
    1. Format the public key (remove line breaks and unnecessary parts)
    $ cat rsa_key.pub | \
    tr -d "\n" | \n
    sed "s/-----BEGIN PUBLIC KEY-----//g" | \
    sed "s/-----END PUBLIC KEY-----//g"
    

    Setting up a public key to Snowflake

    Execute the following query on the Snowflake side based on the public key you created and formatted earlier.

    ALTER USER {USERNAME} SET RSA_PUBLIC_KEY='{PUBLIC_KEY}'
    

    Permissions and Roles

    In order to use Snowflake, it is necessary to grant the necessary permissions to roles and to grant roles to users.
    Note that the privileges that need to be granted to roles differ between the transfer settings (source and destination) and the data mart definition.

    When using forwarding settings (forwarding source)

    Required Authority

    (data) itemauthorityContents
    Virtual Warehouse AuthorityOPERATEChange the state of the warehouse (stopped, started, paused, resumed) so that running queries can be aborted.
    Virtual Warehouse AuthorityUSAGEvirtual warehouses and, as a result, execute queries in the warehouses.
    Database AuthorityUSAGEdatabase. Additional permissions are required to view or perform actions on objects in the database.
    schema authorizationUSAGEschema.
    Table AuthoritySELECTtable so that you can execute SELECT statements on it.

    Query Sample

    The following is a sample query to grant privileges to a role, using the following conditions as examples.
    When actually granting privileges to roles, please reread the contents accordingly.

    • Role to be created: TROCCO_INPUT_ROLE
    • User to whom the role is granted: TROCCO_USER
    • Target warehouse:TROCO_WAREHOUSE
    • Target database: TROCCO_DATABASE
    • Target schema: PUBLIC
    • Target table: TROCCO_TABLE

    -- Switching roles to roles that can be created

    USE ROLE ACCOUNTADMIN;.
    

    -- Create a new role

    CREATE ROLE TROCCO_INPUT_ROLE;.
    

    -- make the role available to the specified user

    GRANT ROLE TROCCO_INPUT_ROLE TO USER TROCCO_USER;
    

    -- Make the role you create the default role for users

    ALTER USER TROCCO_USER SET DEFAULT_ROLE = TROCCO_INPUT_ROLE;
    

    -- Grant warehouse access privileges to roles

    GRANT USAGE ON WAREHOUSE TROCCO_WAREHOUSE TO ROLE TROCCO_INPUT_ROLE;
    GRANT OPERATE ON WAREHOUSE TROCCO_WAREHOUSE TO ROLE TROCCO_INPUT_ROLE;
    

    -- Grant database usage privileges to roles

    GRANT USAGE ON DATABASE TROCCO_DATABASE TO ROLE TROCCO_INPUT_ROLE;
    

    -- Granting roles permission to use the schema

    GRANT USAGE ON SCHEMA TROCCO_DATABASE.PUBLIC TO ROLE TROCCO_INPUT_ROLE;
    

    -- If you want to grant a role the permission to execute SELECT queries against all tables in the schema

    GRANT SELECT ON ALL TABLES IN SCHEMA TROCCO_DATABASE.PUBLIC TO ROLE TROCCO_INPUT_ROLE;
    

    -- To grant a role permission to execute SELECT queries only on individual tables

    GRANT SELECT on TABLE TROCCO_DATABASE.PUBLIC.TROCCO_TABLE TO ROLE TROCCO_INPUT_ROLE;
    

    When using forwarding settings (forwarding destination)

    Required Authority

    (data) itemauthorityContentsremarks
    Virtual Warehouse AuthorityOPERATEChange the state of the warehouse (stopped, started, paused, resumed) so that running queries can be aborted.
    Virtual Warehouse AuthorityUSAGEvirtual warehouses and, as a result, execute queries in the warehouses.
    Database AuthorityUSAGEdatabase. Additional permissions are required to view or perform actions on objects in the database.
    schema authorizationUSAGEschema.
    schema authorizationCREATE TABLEAllows new tables to be created in the schema, such as duplicating a table.
    schema authorizationCREATE STAGEAllows new stages to be created in the schema, such as duplicating a stage.
    Table AuthorityOWNERSHIPTransfer ownership of the table. This grants full control over the table.If the transfer mode is REPLACE,
    This is required to execute a DROP TABLE query.
    To use a DROP TABLE query, you must use a role that has ownership of the table.
    Snowflake Documentation - Usage Notes
    This is necessary only when executing on a table that already exists.

    Query Sample

    The following is a sample query to grant privileges to a role, using the following conditions as examples.
    When actually granting privileges to roles, please reread the contents accordingly.

    • Role to be created: TROCCO_OUTPUT_ROLE
    • User to whom the role is granted: TROCCO_USER
    • Target warehouse:TROCO_WAREHOUSE
    • Target database: TROCCO_DATABASE
    • Target schema: PUBLIC
    • Target table: TROCCO_TABLE

    -- Switching roles to roles that can be created

    USE ROLE ACCOUNTADMIN;.
    

    -- Create a new role

    CREATE ROLE TROCCO_OUTPUT_ROLE;.
    

    -- make the role available to the specified user

    GRANT ROLE TROCCO_OUTPUT_ROLE TO USER TROCCO_USER;
    

    -- Make the role you create the default role for users

    ALTER USER TROCCO_USER SET DEFAULT_ROLE = TROCCO_OUTPUT_ROLE;
    

    -- Grant warehouse access privileges to roles

    GRANT USAGE ON WAREHOUSE TROCCO_WAREHOUSE TO ROLE TROCCO_OUTPUT_ROLE;
    GRANT OPERATE ON WAREHOUSE TROCCO_WAREHOUSE TO ROLE TROCCO_OUTPUT_ROLE;
    

    -- Grant database usage privileges to roles

    GRANT USAGE ON DATABASE TROCCO_DATABASE TO ROLE TROCCO_OUTPUT_ROLE;
    

    -- Granting roles permission to use the schema

    GRANT USAGE ON SCHEMA TROCCO_DATABASE.PUBLIC TO ROLE TROCCO_OUTPUT_ROLE;
    

    -- Grant table creation privileges to roles

    GRANT CREATE TABLE ON SCHEMA TROCCO_DATABASE.PUBLIC TO ROLE TROCCO_OUTPUT_ROLE;
    

    -- Granting roles the authority for stage operations

    GRANT CREATE STAGE on SCHEMA TROCCO_DATABASE.PUBLIC to ROLE TROCCO_OUTPUT_ROLE;
    

    -- Transfers ownership of a table to a role
    -- * Required when executing on a table that already exists.

    GRANT OWNERSHIP ON TABLE TROCCO_DATABASE.PUBLIC.TROCCO_TABLE TO ROLE TROCCO_OUTPUT_ROLE;
    

    When using data mart definitions

    Required Authority

    (data) itemauthorityContentsremarks
    Virtual Warehouse AuthorityOPERATEChange the state of the warehouse (stopped, started, paused, resumed) so that running queries can be aborted.
    Virtual Warehouse AuthorityUSAGEvirtual warehouses and, as a result, execute queries in the warehouses.
    Database AuthorityUSAGEdatabase. Additional permissions are required to view or perform actions on objects in the database.
    schema authorizationUSAGEschema.
    schema authorizationCREATE TABLEAllows new tables to be created in the schema, such as duplicating a table.
    Table AuthoritySELECTtable so that you can execute SELECT statements on it.
    Table AuthorityINSERTAllows INSERT statements to be executed on tables.When the write mode is append, this is required to register data in the destination table.
    Table AuthorityOWNERSHIPTransfer ownership of the table. This grants full control over the table.This is required to perform deletion of the output destination table when the write mode is all cases washing.
    This is necessary only when executing on a table that already exists.

    Query Sample

    The following is a sample query to grant privileges to a role, using the following conditions as examples.
    When actually granting privileges to roles, please reread the contents accordingly.

    • Role to be created: TROCCO_DATAMART_ROLE
    • User to whom the role is granted: TROCCO_USER
    • Target warehouse:TROCO_WAREHOUSE
    • Target database: TROCCO_DATABASE
    • Target schema: PUBLIC
    • Target table: TROCCO_TABLE

    -- Switching roles to roles that can be created

    USE ROLE ACCOUNTADMIN;.
    

    -- Create a new role

    CREATE ROLE TROCCO_DATAMART_ROLE;.
    

    -- make the role available to the specified user

    GRANT ROLE TROCCO_DATAMART_ROLE TO USER TROCCO_USER;
    

    -- Make the role you create the default role for users

    ALTER USER TROCCO_USER SET DEFAULT_ROLE = TROCCO_DATAMART_ROLE;
    

    -- Grant warehouse access privileges to roles

    GRANT USAGE ON WAREHOUSE TROCCO_WAREHOUSE TO ROLE TROCCO_DATAMART_ROLE;
    
    GRANT OPERATE ON WAREHOUSE TROCCO_WAREHOUSE TO ROLE TROCCO_DATAMART_ROLE;
    

    -- Grant database usage privileges to roles

    GRANT USAGE ON DATABASE TROCCO_DATABASE TO ROLE TROCCO_DATAMART_ROLE;
    

    -- Granting roles permission to use the schema

    GRANT USAGE ON SCHEMA TROCCO_DATABASE.PUBLIC TO ROLE TROCCO_DATAMART_ROLE;
    

    -- Grant table creation privileges to roles

    GRANT CREATE TABLE ON SCHEMA TROCCO_DATABASE.PUBLIC TO ROLE TROCCO_DATAMART_ROLE;
    

    -- Grant a role permission to perform INSERT queries on a table

    GRANT INSERT ON TABLE TROCCO_DATABASE.PUBLIC.TROCCO_TABLE TO ROLE TROCCO_DATAMART_ROLE;
    

    -- Transfers ownership of a table to a role
    -- * Required when executing on a table that already exists.

    GRANT OWNERSHIP ON TABLE TROCCO_DATABASE.PUBLIC.TROCCO_TABLE TO ROLE TROCCO_DATAMART_ROLE;
    

    Was this article helpful?