Reputation: 166
I'm new to snowflake and I am curious to know How many simultaneous connections can be open to snowflake through JDBC with same credentials? If there is limit to the connections with different credentials?
Upvotes: 1
Views: 2475
Reputation: 524
There is no such limit on how many connections you can start from JDBC. However is there any specific use case, that you need to start multiple connections? A single connection can be used to query the DB and you can use multiple statements in the same query. https://docs.snowflake.com/en/user-guide/jdbc-using.html#sending-multiple-statements-handling-results
Upvotes: 2