Another way to run queries is to use Microsoft Power Query (also known in Excel 2016 and up as Get and Transform). The AddIn provided by Microsoft does require knowledge of the SQL Language, rather allowing you to click your way through the data you want to tranform. Power Query lets you analyze your data right from within Excel, while seamlessly connecting to a wide range of external data sources. Easily reshape and transform your data along the way if needed. Get to know “Get and Transform Data” To use Power Query, just click the Data tab in Excel 2016 or newer, called “Get and Transform Data”. Power Query is available as a free add-in on Excel 2010 and 2013, which you can download from Microsoft's website. The link is available here. On clicking the Download button, a dialog box opens where you can choose the appropriate download option that suits your OS.
-->Summary
Item | Description |
---|---|
Release State | General Availability |
Products | Power BI (Datasets) Power BI (Dataflows) Power Apps (Dataflows) Excel Dynamics 365 Customer Insights Analysis Services |
Authentication Types Supported | Database (Username/Password) |
Function Reference Documentation | PostgreSQL.Database |
Note
Some capabilities may be present in one product but not others due to deployment schedules and host-specific capabilities.
Prerequisites
As of the December 2019 release, NpgSQL 4.0.10 shipped with Power BI Desktop and no additional installation is required. GAC Installation overrides the version provided with Power BI Desktop, which will be the default. Refreshing is supported both through the cloud in the Power BI Service and also on premise through the Gateway. In the Power BI service, NpgSQL 4.0.10 will be used, while on premise refresh will use the local installation of NpgSQL, if available, and otherwise use NpgSQL 4.0.10.
For Power BI Desktop versions released before December 2019, you must install the NpgSQL provider on your local machine. To install the NpgSQL provider, go to the releases page and download the relevant release. The provider architecture (32-bit or 64-bit) needs to match the architecture of the product where you intend to use the connector. When installing, make sure that you select NpgSQL GAC Installation to ensure NpgSQL itself is added to your machine.
Ibm spss statistics 27. We recommend NpgSQL 4.0.10. NpgSQL 4.1 and up won't work due to .NET version incompatibilities.
![Power Power](https://www.microsoft.com/en-us/microsoft-365/blog/wp-content/uploads/sites/2/2015/04/6-updates-for-Power-Query-for-Excel-2.png)
Capabilities Supported
- Import
- DirectQuery (Power BI only, learn more)
- Advanced options
- Command timeout in minutes
- Native SQL statement
- Relationship columns
- Navigate using full hierarchy
Microsoft Power Query For Excel Office 365
Connect to a PostgreSQL database from Power Query Desktop
Once the matching Npgsql provider is installed, you can connect to a PostgreSQL database. To make the connection, take the following steps:
Select the PostgreSQL database option in the connector selection.
In the PostgreSQL database dialog that appears, provide the name of the server and database.
Select either the Import or DirectQuery data connectivity mode.
If this is the first time you're connecting to this database, input your PostgreSQL credentials in the User name and Password boxes of the Database authentication type. Select the level to apply the authentication settings to. Then select Connect.
For more information about using authentication methods, go to Authentication with a data source.
Note
If the connection is not encrypted, you'll be prompted with the following message.
Select OK to connect to the database by using an unencrypted connection, or follow the instructions in Enable encrypted connections to the Database Engine to set up encrypted connections to PostgreSQL database.
In Navigator, select the database information you want, then either select Load to load the data or Transform Data to continue transforming the data in Power Query Editor.
Connect to a PostgreSQL database from Power Query Online
To make the connection, take the following steps:
![Microsoft Power Query For Excel Microsoft Power Query For Excel](https://support.content.office.net/en-us/media/1693b75b-6e55-4327-b45a-73c2e80e99fe.png)
Select the PostgreSQL database option in the connector selection.
In the PostgreSQL database dialog that appears, provide the name of the server and database.
Select the name of the on-premises data gateway you want to use.
Select the Basic authentication kind and input your MySQL credentials in the Username and Password boxes.
If your connection isn't encrypted, clear Use Encrypted Connection.
Select Next to connect to the database.
In Navigator, select the data you require, then select Transform data to transform the data in Power Query Editor.
Connect using advanced options
Power Query Desktop provides a set of advanced options that you can add to your query if needed.
The following table lists all of the advanced options you can set in Power Query Desktop.
Advanced option | Description |
---|---|
Command timeout in minutes | If your connection lasts longer than 10 minutes (the default timeout), you can enter another value in minutes to keep the connection open longer. This option is only available in Power Query Desktop. |
SQL statement | For information, go to Import data from a database using native database query. |
Include relationship columns | If checked, includes columns that might have relationships to other tables. If this box is cleared, you won’t see those columns. |
Navigate using full hierarchy | If checked, the navigator displays the complete hierarchy of tables in the database you're connecting to. If cleared, the navigator displays only the tables whose columns and rows contain data. |
Microsoft Power Query For Excel Integrated
Once you've selected the advanced options you require, select OK in Power Query Desktop to connect to your PostgreSQL database.
Native query folding
By default, native query folding is enabled. Operations that are capable of folding will be applied on top of your native query according to normal Import or Direct Query logic. Native Query folding isn't applicable with optional parameters present in Value.NativeQuery().
In the rare case that folding doesn't work with native query folding enabled, you can disable it. To disable native query folding, set the EnableFolding
flag to false
for Value.NativeQuery() in the advanced editor.
Sample:Value.NativeQuery(target as any, query, null, [EnableFolding=false])
Microsoft Power Query For Excel 2013 32-bit
Troubleshooting
Microsoft Power Query For Excel Formula Language Specification
Your native query may throw the following error:
We cannot fold on top of this native query. Please modify the native query or remove the 'EnableFolding' option.
A basic trouble shooting step is to check if the query in Value.NativeQuery() throws the same error with a limit 1
clause around it:
Microsoft Power Query For Excel Update
![For For](https://www.excelcampus.com/wp-content/uploads/2015/03/PowerQueryEditorWindowHomeandTransformTabButtons.png)
select * from (query) _ limit 1
![](https://cdn-ak.f.st-hatena.com/images/fotolife/r/ruriatunifoefec/20200910/20200910011350.png)