Forum Discussion
Best Practice: Combine data using Power BI or SQL statements?
- 8 years ago
In general, the more that you can push back to the server the better. This is a general rule. So, creating a View in Postgres that does is simply a UNION of your two other views is going to be the most efficient. You have those options in Power BI because most end users do not have access to the backend SQL database, but if you do, then that is generally the "best" way of doing it.
In general, the more that you can push back to the server the better. This is a general rule. So, creating a View in Postgres that does is simply a UNION of your two other views is going to be the most efficient. You have those options in Power BI because most end users do not have access to the backend SQL database, but if you do, then that is generally the "best" way of doing it.