Skip to main content
Microsoft Idea

Vote (0) Share
's profile image

on

Comments (0)
's profile image Profile Picture

on 17 Jun 2024 14:26:29

RE:

Why is it still in "need votes" status ?? This is such a basic and important functionality, and so many people already voted....

's profile image Profile Picture

Koen Verbeeck on 17 Jun 2024 14:18:58

RE:

There's a REST API that you can use to pause or resume a capacity.You can put this in an ADF pipeline, a Logic App, a Github action, an Azure Function, you name it.Anything that can be scheduled and that can call a REST API (and authenticate against Azure) can be used to stop/resume a Fabric capacity.A solution with ADF is described here:https://www.mssqltips.com/sqlservertip/7774/save-money-microsoft-fabric-pause-start-capacity/

's profile image Profile Picture

Julian Gimbel on 17 Jun 2024 14:16:29

RE:

As pasting code is not really possible here, I pasted the example here:https://pastebin.com/PAsinbC1

's profile image Profile Picture

Jérôme Poudou on 17 Jun 2024 14:07:42

RE:

I agree.we must have a real time and a per activity (in the monitoring hub) the CU consumed.and also the estimated burn down

's profile image Profile Picture

Mickel Schmitt on 17 Jun 2024 14:06:24

RE:

Screen cannot be enlarged. With long file names you still see nothing now.Very disappointing.

's profile image Profile Picture

Mihai Scrobotovici on 17 Jun 2024 14:00:42

RE:

One way to set this up is by tracking which links are being used in dashboards, scorecards, etc. and preventing said links from ever expiring, as long as they are set in said scorecards, dashboards, etc.

's profile image Profile Picture

Julian Gimbel on 17 Jun 2024 13:41:18

RE:

You can use the following code to do so:import requestsimport jsonfrom notebookutils import mssparkutilsworkspace_id = spark.conf.get("trident.workspace.id")lakehouse_item_id = mssparkutils.lakehouse.list()[0]["id"]payload = {  "name": "customers",  "path": "Tables",  "target": {    "oneLake": {      "itemId": lakehouse_item_id,      "path": "Files/cmk-container/silver/customers",      "workspaceId": workspace_id    }  }}token = mssparkutils.credentials.getToken('pbi')headers = {    'Authorization': f'Bearer {token}',    'Content-type': 'application/json'}url = f"https://api.fabric.microsoft.com/v1/workspaces/{workspace_id}/items/{lakehouse_item_id}/shortcuts"print(url)print(json.dumps(payload))response = requests.post(url, data=json.dumps(payload), headers=headers)

's profile image Profile Picture

Katie Ratcliffe on 17 Jun 2024 10:47:37

RE:

Given the move to capacity based pricing, surely a clean up routine in the UI for the SMMTransLog table would be considered essential functionality.

's profile image Profile Picture

Adrian Wilde on 17 Jun 2024 09:05:25

RE:

I used to have this ability when using SAP BW, and it is invaluable to users when faced with lots of measure with similar names, that can have very different values.It also makes use of the time and effort maintaining the help in the first place.Many thanks

's profile image Profile Picture

Amar Khaliq on 17 Jun 2024 08:43:50

RE:

I have been creating reports recently with a lot of pages, as I need the extra pages to drill down on measures, and have realized that bookmarks are not useful for reports that need scaling and pages are better and therefore need more room to navigate the pages. A VS code style file explorer tab would be perfect add on to the current Power BI desktop application.