I need to connect a Snowflake database to DB Schema. DB Schema is asking for the JDBC URL. Where can I find this in snowflake?
Where to find JDBC URL in Snowflake
3.1k Views Asked by HilaryKoerner At
3
There are 3 best solutions below
1

If you are referring to this:
"jdbc:snowflake://--accountname--.snowflakecomputing.com/
you can find your Snowflake account URL by running this SQL:
use role accountadmin;
select system$whitelist();
Your Snowflake account URL will is as follows: {"type":"SNOWFLAKE_DEPLOYMENT","host":"xxxxxxx.snowflakecomputing.com","port":443}
you should find it’s documented here: https://docs.snowflake.com/en/user-guide/jdbc-parameters.html