Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In the March 2025 update of Power BI Desktop, the Snowflake connector Implementation="2.0"
flag is added by default. When this flag is enabled, views aren't visible in both Power BI Desktop and Power BI service.
Status: Fixed: May 8, 2025
Product Experience: Power BI
Symptoms
The new Snowflake connector doesn't show views when using the Implementation="2.0"
flag.
Solutions and workarounds
One workaround you can use is using the new connector. Open your M query in the Advanced editor and remove the key Kind="View"
. The source string looks similar to: let Source =Snowflake.Databases(server, warehouse,[Implementation = "2.0"]), Database = Source{[Name="DEMO_DB",Kind="Database"]}[Data], Schema = Database{[Name="PUBLIC",Kind="Schema"]}[Data], Table = Schema{[Name="ALLTYPES_VIEW",Kind="View"]}[Data],
.
Another workaround is for you to use the old connector version. Disable the preview setting for the new snowflake driver in Power BI Desktop. For the Power BI Service, you can remove the [Implementation="2.0"]
tag in the Advanced editor.