Forum Discussion
krasinv
3 years agoFrequent Visitor
DataFlow / Power Query to read from Delta Lake ( ADLS) with DeltaLake.Table()
Good day, My case is not Databricks Delta Lake. I'm trying to read natively from Delta Lake Table stored on ADLSgen2. There is a new capability DeltaLake.Table() (description here https://learn.mic...
krasinv
3 years agoFrequent Visitor
Good day,
Thank you. I'm aware of this solution but my question relates to the official data function which is not work for me.
alexjbush
1 year agoFrequent Visitor
Late to the party, however you can make it work using the following:
let
Source = AzureStorage.DataLake("https://XXXXX.dfs.core.windows.net/path to DeltaLakeTable/", [HierarchicalNavigation=true]),
ReadDelta = DeltaLake.Table(Source)
in
ReadDelta