Skip to main content
Feedback

RVR-LSNF-108

Issue summary

  • The error "Warehouse does not exist. Error Code: RVR-LSNF-108" relates to a Snowflake data connector in Data Integration. This indicates that the specified warehouse set in your Data Integration 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 created within your Snowflake environment.

Action steps

To resolve the error, follow these steps:

  • Verify Warehouse Name: Ensure that the warehouse name specified in your Data Integration 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 inactive, 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:
    CREATE WAREHOUSE IF NOT EXISTS "your_warehouse_name"    
    WAREHOUSE_SIZE = 'XSMALL'
    WAREHOUSE_TYPE = 'STANDARD'
    AUTO_SUSPEND = 300
    AUTO_RESUME = TRUE
    INITIALLY_SUSPENDED = TRUE;
    Be sure to replace "your_warehouse_name" with the actual name you wish to use.

External references

note

If the issue persists or you need help, open a case with Data Integration Support. In the console sidebar, select Help > Contact Us and follow the instructions.

On this Page