top of page
Writer's pictureKunal Ranpura

Script to find role assigned to the user in snowflake

select GRANTEE_NAME AS "USERNAME", ROLE

from SNOWFLAKE.ACCOUNT_USAGE.GRANTS_TO_USERS

where DELETED_ON is null and Role = 'ROLENAME'

and Grantee_name like '%username%'

order by USERNAME;


7 views0 comments

Recent Posts

See All

Identify slow running queries in snowflake

select distinct count(query_id) as total_query --,QUERY_TEXT --,DATABASE_NAME --,SCHEMA_NAME --,QUERY_TYPE --,USER_NAME --,ROLE_NAME...

コメント


bottom of page