Grant LandingLens Access to Stages
- 05 Nov 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Grant LandingLens Access to Stages
- Updated on 05 Nov 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
This article applies to these versions of LandingLens:
LandingLens | LandingLens on Snowflake |
✖ | ✓ |
Some SQL commands for managing LandingLens on Snowflake require you to grant LandingLens access to Snowflake stages.
The processes that require LandingLens to have access to stages include:
Grant LandingLens Access to a Stage
To grant LandingLens access to a stage:
- Make a note of the database, schema, and stage that you want to give LandingLens access to.
- Locate the name of your instance of LandingLens. For instructions on how to do this, go here.
- Open Snowsight.
- Create a new worksheet and run the following SQL commands. Replace the
YOUR_DB
,YOUR_SCHEMA
,YOUR_STAGE
, and<APP_NAME>
placeholders with your information.GRANT USAGE ON DATABASE YOUR_DB TO APPLICATION <APP_NAME>; GRANT USAGE ON SCHEMA YOUR_DB.YOUR_SCHEMA TO APPLICATION <APP_NAME>; GRANT READ ON STAGE YOUR_DB.YOUR_SCHEMA.YOUR_STAGE TO APPLICATION <APP_NAME>;
Was this article helpful?