Giving access to Snowflake data
By default, the Whaly platform only has access to data that was imported using Whaly connectors.
If you have data already stored inside your Snowflake account that you want to access within Whaly BI, you can do it using the following commands:
Please run those commands with the
ACCOUNTADMIN
role to have the proper sharing rights!set whaly_bi_role = 'WHALY_BI_ROLE';
set snowflake_database = 'INSERT_PROPER_DATABASE_NAME_TO_EXPOSE_IN_WHALY_BI';
grant USAGE
on database identifier($snowflake_database)
to role identifier($whaly_bi_role);
This will get Whaly access to the database but not to the data stored inside it. Follow the next steps to give access to the proper part of the database to Whaly ⤵️
set whaly_bi_role = 'WHALY_BI_ROLE';
set snowflake_database = 'INSERT_PROPER_DATABASE_NAME_TO_EXPOSE_IN_WHALY_BI';
USE DATABASE identifier($snowflake_database);
grant USAGE
on all schemas in database identifier($snowflake_database)
to role identifier($whaly_bi_role);
grant SELECT
on all tables in database identifier($snowflake_database)
to role identifier($whaly_bi_role);
grant SELECT
on future tables in database identifier($snowflake_database)
to role identifier($whaly_bi_role);
Whenever adding new schemas into your Snowflake database on which you to get access to Whaly, please run the following query
🔽
set whaly_bi_role = 'WHALY_BI_ROLE';
set snowflake_database = 'INSERT_PROPER_DATABASE_NAME_TO_EXPOSE_IN_WHALY_BI';
set snowflake_schema = 'INSERT_PROPER_SCHEMA_NAME';
USE DATABASE identifier($snowflake_database);
grant USAGE
on schema identifier($snowflake_schema)
to role identifier($whaly_bi_role);
set whaly_bi_role = 'WHALY_BI_ROLE';
set snowflake_database = 'INSERT_PROPER_DATABASE_NAME_TO_EXPOSE_IN_WHALY_BI';
set snowflake_schema = 'INSERT_PROPER_SCHEMA_NAME';
USE DATABASE identifier($snowflake_database);
grant USAGE
on schema identifier($snowflake_schema)
to role identifier($whaly_bi_role);
grant SELECT
on all tables in schema identifier($snowflake_schema)
to role identifier($whaly_bi_role);
grant SELECT
on future tables in schema identifier($snowflake_schema)
to role identifier($whaly_bi_role);
Last modified 7mo ago