Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hello All,
This morning, while attempting to manage our Data Marts, I encountered an unexpected issue. While I am able to manually refresh the Data Mart, I am unable to activate the scheduled refresh option. This discrepancy has led me to believe that there may have been alterations to the Data Mart settings, the Data Mart setting menu has changed.
Despite conducting thorough checks, I can confirm that neither a gateway issue nor a credential problem is responsible for this anomaly.
It's worth noting that our Data Marts are typically executed on a monthly basis, and I can confirm that we did not encounter any such issues during the previous month's operation.
I would greatly appreciate any insights or suggestions you may have regarding this matter.
Solved! Go to Solution.
Hi,@Shafir
I am glad to help you.
Unfortunately, in my testing, I found that my previous bed build of datemart was also unable to configure a scheduled refresh
This issue has been confirmed as a known issue internally.
Other users are also experiencing this issue
Please be patient to wait for fixing. If there is any news, I will update it here
Thank you for your understanding.
Below I provide some possible alternatives:
To do this you need to install the powershell module that manages power BI.
Here are some common power shell commands that you may find useful
install
Install-Module -Name MicrosoftPowerBIMgmt
install different modules
Install-Module -Name MicrosoftPowerBIMgmt.Workspaces
login power BI service
Connect-PowerBIServiceAccount
get workspace
Get-PowerBIWorkspace
get workspace info
Get-PowerBIWorkSpace -id "your workspaceID"
get semantic model by workspaceId
Get-PowerBIDataset -WorkspaceId " your workspaceID "
refresh semantic model
$workspaceId = " your workspaceID "
$semanticmodelId = "your semanticmodelID"
$refreshBody = [PSCustomObject]@{ type = "Full"; startTime = "2024-05-05T12:00:00Z" } | ConvertTo-Json
Invoke-PowerBIRestMethod -Url "groups/${workspaceId}/datasets/${semanticmodelId}/refreshes" -Method POST -Body $refreshBody
To be able to remotely manipulate the workspace, you need to enable XMLA endpoints
url:Semantic model connectivity and management with the XMLA endpoint in Power BI - Power BI | Microsoft...
Perform a schedule refresh on this semantic model (if feasible)
Here are my test results:
The previous setting screen is as follows:
But now it's come to this:
I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.
Best Regards,
Carson Jian,
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,@Shafir
I am glad to help you.
Unfortunately, in my testing, I found that my previous bed build of datemart was also unable to configure a scheduled refresh
This issue has been confirmed as a known issue internally.
Other users are also experiencing this issue
Please be patient to wait for fixing. If there is any news, I will update it here
Thank you for your understanding.
Below I provide some possible alternatives:
To do this you need to install the powershell module that manages power BI.
Here are some common power shell commands that you may find useful
install
Install-Module -Name MicrosoftPowerBIMgmt
install different modules
Install-Module -Name MicrosoftPowerBIMgmt.Workspaces
login power BI service
Connect-PowerBIServiceAccount
get workspace
Get-PowerBIWorkspace
get workspace info
Get-PowerBIWorkSpace -id "your workspaceID"
get semantic model by workspaceId
Get-PowerBIDataset -WorkspaceId " your workspaceID "
refresh semantic model
$workspaceId = " your workspaceID "
$semanticmodelId = "your semanticmodelID"
$refreshBody = [PSCustomObject]@{ type = "Full"; startTime = "2024-05-05T12:00:00Z" } | ConvertTo-Json
Invoke-PowerBIRestMethod -Url "groups/${workspaceId}/datasets/${semanticmodelId}/refreshes" -Method POST -Body $refreshBody
To be able to remotely manipulate the workspace, you need to enable XMLA endpoints
url:Semantic model connectivity and management with the XMLA endpoint in Power BI - Power BI | Microsoft...
Perform a schedule refresh on this semantic model (if feasible)
Here are my test results:
The previous setting screen is as follows:
But now it's come to this:
I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.
Best Regards,
Carson Jian,
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
37 | |
27 | |
17 | |
16 | |
8 |
User | Count |
---|---|
45 | |
38 | |
34 | |
18 | |
15 |