Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
We have a Database that was created with a case sensitive name in Snowflake called MyDatabase.
CREATE DATABASE "MyDatabase"
To query this database, we have to run a query like:
SELECT * FROM "MyDatabase".PUBLIC.ITEMSTABLE
This query will fail when we query snowflake:
SELECT * FROM MyDatabase.PUBLIC.ITEMSTABLE
In PowerBI when we native query via the Snowflake connector, the error logs indicate that the quotes around MyDatabase are being stripped from the query. We get this error in PowerBI:
And this error in Snowflake:
Inicating that the query making it to snowflake is missing the double quotes around MyDatabase.
See original Stackoverflow thread and comments exploring topic here:
Please reachout if you have further questions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.