Issue in configuring JDBC driver for SnowflakeSummarySnowflake integration through JDBC. We have configured the Snowflake-jdbc-3.13.6.jar under Mid Server JAR file and create new Data Source for Snowflake connection. We are getting the below error when we do a test load for 20 records:"MID Server reported error: java.sql.SQLException: java.sql.SQLException: No suitable driver found for jdbc:snowflake://XX.XX-XXX-1.snowflakecomputing.com/?user=USER_NAME&password=PASSWORD&warehouse=APP_USER_WH&db=DB_NAME&schema=ODS &role=GENERAL_ROLEjava.sql/java.sql.DriverManager.getConnection(DriverManager.java:702)"ReleaseallInstructionsInvestigation: We register all drivers we can possibly use through some kind of JDBC Driver Manager in MID, and we figure out which of those drivers is applicable for the given request by passing in the connection_url and any other relevant properties. Customer was able to install the driver successfully, but snowflake driver was not selected because the connection_url we pass into the JDBC Driver Manager to figure out which one we can use is faulty. Cause: If you take a look, there is an empty space just before the '&' character found here "schema=ODS &role=GENERAL_ROLE" That messes up with the url parser, causing all the drivers to opt out from being able to handle the request. Steps Taken: Dev team tried removing the empty space, and i was able to get an authentication error when clicking on "Test Load 20", suggesting that the right driver was found but incorrect credentials were used. Solution: The fix is to remove the empty space in the BR used to evaluate connection_url, Business Rule: Snowflake for sys_data_source table. See the screenshot of it, and circled the extra white space.