RVR-LSNF-108
- 1 Minute to read
- Print
- DarkLight
- PDF
RVR-LSNF-108
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Issue Summary
- The error "Warehouse does not exist. Error Code: RVR-LSNF-108" is associated with a Snowflake data connector in Rivery. This indicates that the specified warehouse set in your Rivery configuration does not exist in your Snowflake account. This could be due to a typo in the warehouse name, configuration issues, or the warehouse may not have been created within your Snowflake environment.
Action Steps:
- Verify Warehouse Name: Ensure that the warehouse name specified in your Rivery connection matches exactly with one of the existing warehouse names in your Snowflake account. Check for any typos or case sensitivity issues.
- Check Warehouse Status: Log into your Snowflake account and verify that the warehouse is active and not in a suspended state. If it is suspended, manually resume it.
- Review Snowflake Permissions: Ensure that your Snowflake credentials have the necessary permissions to access the warehouse. Your user role should have USAGE privilege on the specified warehouse.
- Create a Warehouse: If the warehouse does not exist, you may need to create it. You can use the following SQL command in Snowflake to create a warehouse:
Be sure to replaceCREATE WAREHOUSE IF NOT EXISTS "your_warehouse_name" WAREHOUSE_SIZE = 'XSMALL' WAREHOUSE_TYPE = 'STANDARD' AUTO_SUSPEND = 300 AUTO_RESUME = TRUE INITIALLY_SUSPENDED = TRUE;
"your_warehouse_name"
with the actual name you wish to use.
External References:
If the issue persists or you need further assistance, please open a ticket with Rivery support.
Was this article helpful?