Forum Discussion
Connect PowerBI Desktop with PostgreSQL
mfairchild This blog in Power BI Community might help click here
Thanks for that link ashishrj. I was actually trying to connect excel to postgres, and from there export to Power BI.
The doc at https://support.office.com/en-za/article/Connect-to-a-PostgreSQL-database-Power-Query-bf941e52-066f-4911-a41f-2493c39e69e4?ui=en-US&rs=en-ZA&ad=ZA seems straight forward, except its not clear how to specify additional options for the Npgsql driver. Plenty are mentioed at http://www.npgsql.org/doc/connection-string-parameters.html. I need to set the `Trust Server Certificate=true` value. The dialog in excel does not seem to offer fields for raw connection string tho. Any ideas how to specify more details, or jsut provide a raw connection string?
- jason_rmh10 years agoNew Member
I have had the same issue, connecting to a local instance of PostgreSQL.
I think thePostgreSQL instance will need to be configured for SSL using OpenSSL, although Im not yet sure how to do that.
As a work around, I am using an ODBC connection.
Install latest npgsql ( I installed v3.0.5).
Make sure you check the options to install to GAC when installing npgsql.
This will place the relevant assemblies in the windows assembly cache.
I then created a DSN connection to my postgres database (Control Panel > Admin Tools > Data Sources (ODBC)).
Remember, if on 64 bit machine you will need to use the ODBC tool from '%SystemRoot%\SysWOW64\odbcad32.exe' rather than the one from admin tools, other wise your DSN will not show in the application later on.
From Power BI, select 'ODBC' from the list when connecting to your data, you should then be able to select your DSN from the drop down that appears in Power BI.
Click OK, you will be prompted to enter username / password for the database connection.
Power BI will then scan the database and list the tables available for you to use.
Maybe not ideal using ODBC, but will get you going for now.
Hope this helps.
Jason
- gum10 years agoRegular Visitor
Having the same issues, thanks for the info so far.
From what I can tell after version 3.x of Npgsql the behaviour changed from:
warn about non-encrypted connections and allow connection anyways after prompt
to:
require encrypted connection
and no one knows how to change connection params in Excel.
Excel 2010 works when using https://github.com/npgsql/npgsql/releases/tag/v2.2.5 (rc3 https://github.com/npgsql/npgsql/releases/download/v2.2.5/Setup_Npgsql-2.2.5.0-r3-net45.exe) and installing only the 1st, 3rd, and fourth check boxes.
Doing the above does not require any messing about with GACUtil and machine.config.
Power Query will then warn about the connection to postgresql not being encrypted but allow you to connect anyways.
Can't get any of this to work in Excel 2016 though...
- asafeilam8 years agoRegular Visitor
I follow after the instruction and succeeded!
however, when another database was protected by ssl it fails to connect.
any suggestions for fixing it?
- asafeilam8 years agoRegular Visitor
I follow after the instruction and succeeded!
however, when another database was protected by ssl it fails to connect.
any suggestions for fixing it?