1. A BI tool that only integrates with generic JDBC-compliant data sources needs to connect to Snowflake. What must typically be configured for this connection to work correctly?
- A. The Snowflake JDBC driver JAR must be installed/registered with the tool, along with a correctly formed JDBC connection URL specifying account identifier and connection parameters✓ Correct
- B. The BI tool must instead be reconfigured to use SnowSQL exclusively
- C. JDBC connections to Snowflake are not supported by any BI tooling
- D. Only ODBC-based BI tools can ever connect to Snowflake
Explanation
For a JDBC-compliant BI tool to connect to Snowflake, the Snowflake JDBC driver needs to be made available to the tool (as a JAR/library), and a properly formed JDBC connection URL (including the account identifier and relevant parameters like warehouse, database, role) must be configured — standard JDBC integration practice. Option B is unnecessary and incorrect; SnowSQL is a separate CLI tool, not a substitute for JDBC integration within a BI product. Option C is false — Snowflake explicitly supports JDBC connectivity, which is exactly why the driver exists. Option D is false; both JDBC and ODBC (among other clients) are supported, not just ODBC.