Forum Discussion
Data Update on SQL Server using a PowerBI Enterprise Gateway
- Anonymous10 years ago
Anonymous Have you tried dynamically generating the parameters in the stored procedure so you don't have to hardcode them?
For instance. Build a calling sproc that handles the hardcoded parameters or dynamically generate them in Sproc 1, and have sproc 1 call sproc 2.
A psuedo code example:
CREATE PROCEDURE dbo.RunExcelActividadesPrevisaoFaturacao
as
declare @begindate date = begindate
declare @enddate date = enddate
declare @query int = 5
Execute dbo.ExcelActividadesPrevisãoFaturação @begindate, @enddate, @query
Anonymous can you please provide some more information? I am guessing you're trying to update from powerbi desktop if you're using source data because you can't manually type in powerbi.com ? But if you are using powerbi desktop then why you need enterprise gateway?
please provide some more information and then i will be able to help.
- Anonymous10 years agoNot applicable
Hi
We tried this conection using a Personal Gateway and it worked. When we try to move it to the Enterprise Gateway it give us the error.
The solution was created with Power BI desktop, publish to online and the data update was made usinf Personal Gateway with sucess. When we tried to use our Enterprise gateway it didn't work.