Skip to content

Instantly share code, notes, and snippets.

@sankars
Created December 19, 2019 09:07
Show Gist options
  • Save sankars/125b4b1cd63585d1b1da6d7fbc31e73f to your computer and use it in GitHub Desktop.
Save sankars/125b4b1cd63585d1b1da6d7fbc31e73f to your computer and use it in GitHub Desktop.
Power BI - Power Query for importing a table from splicemachine
let
Source = Odbc.DataSource("dsn=TPCH", [HierarchicalNavigation=true]),
TPCH_Schema = Source{[Name="TPCH",Kind="Schema"]}[Data],
REGION_Table = TPCH_Schema{[Name="REGION",Kind="Table"]}[Data]
in
REGION_Table
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment