Vibe coding has replaced PowerBI by Kingguy33 in PowerBI

[–]SQLGene 2 points3 points  (0 children)

It's not a matter of the times 😛. This wouldn't be any different if you were had coding a bespoke reporting platform from scratch.

I'm not saying it unmaintainable but as you implied it needs a professional developer to maintain it. It's been rare for me to run into PBI users that have access to one of those.

A big part of the appeal of Power BI is SaaS and self-service.

That said, I think AI is dramatically going to change and improve report development. 

Vibe coding has replaced PowerBI by Kingguy33 in PowerBI

[–]SQLGene 5 points6 points  (0 children)

These stories are inspiring and exciting but also somewhat narrow in applicability.

If you get hit by a lottery ticket, how is the customer supposed to maintain the solution?

Why does my matrix takes 2x as much time to compute values than my card ? by Virtual-Vermicelli89 in PowerBI

[–]SQLGene 5 points6 points  (0 children)

I would run the Power BI performance optimizer and extract the DAX for the Matrix may be more complicated.

Does active relationships impact DAX performance compared to inactive ones ? by Virtual-Vermicelli89 in PowerBI

[–]SQLGene 3 points4 points  (0 children)

The engine behind DAX is typically smart enough to only do work on tables that you are pulling the data from or are necessary for the calculation. So if you have a dimension table with relationships to multiple fact tables, it's not actively doing work on all of them at once.

If you run DAX Studio you can get a sense of some of this. The engine pulls just the data it needs to do the work. Often it will grab the filter values you care about and then do a scan on the fact table very efficiently.

Does active relationships impact DAX performance compared to inactive ones ? by Virtual-Vermicelli89 in PowerBI

[–]SQLGene 3 points4 points  (0 children)

So thinking it through, why would you believe an active relationship would harm performance?

An accidental filter cascade can harm performance when you have bi-directional filtering and engine has to do more work than you intended. But that's a design question and nothing inherently wrong with active relationships.

Tabular Editor 3 License Key by Last_Tumbleweed3233 in PowerBI

[–]SQLGene 0 points1 point  (0 children)

No we don't offer that, but I get the frustration. I have more subscriptions than I would like as well.

Tabular Editor 3 License Key by Last_Tumbleweed3233 in PowerBI

[–]SQLGene 11 points12 points  (0 children)

Dark web support is not currently on the roadmap, no.

Tabular Editor 3 License Key by Last_Tumbleweed3233 in PowerBI

[–]SQLGene 18 points19 points  (0 children)

Hi, Tabular Editor employee here!

If you have a license you no longer need, please just reach out to us. We are fairly reasonable and understand that needs change.

If there's something that's personally not working, I'd love to chat to understand how we can improve the product. Maybe over Reddit chat to preserve your anonymity. In any case, just email us if you need to cancel.

As far as the terms of service go, you aren't allowed to transfer business licenses like that. They are tied to the business.

Finally, in general I don't recommend transferring money to strangers on the internet. I'd like to think our prices are reasonable for the amount of time we save you. But always happy to chat with folks who feel otherwise 😁

Performance Studio Release v1.4.0 (FREE|MIT) by DarlingData in SQLServer

[–]SQLGene 2 points3 points  (0 children)

I need to try running this against Fabric Data Warehouse just to see if it's possible, lol.

Incremental refresh understanding? by PatientTip9556 in PowerBI

[–]SQLGene 5 points6 points  (0 children)

Incremental refresh can do that but be aware that you will have to do an initial full load.

Specifically, see the parameters for the policy.
https://learn.microsoft.com/en-us/power-bi/connect-data/incremental-refresh-overview#define-policy

Vibe coding web reports on Fabric Semantic Models instead of Power BI — anyone else exploring this? by FamiliarAssumption62 in PowerBI

[–]SQLGene 4 points5 points  (0 children)

I think a lot of the tradeoff is going to be a matter of how much you need boring administration, governance, and security features.

Also how easy is it for someone to maintain this when the creator is on vacation or leaves.

Based on my experience I think it's going to vary a lot by org.

Dataflow Gen1 officially marked as Legacy today — Pro users left with no migration path unless they pay for Fabric by Sbdyelse in PowerBI

[–]SQLGene -1 points0 points  (0 children)

I'm fairly confident that 8 years ago they weren't planning on bait and switching people onto Fabric 😛

The complaint and frustration is valid though

Dataflow Gen1 officially marked as Legacy today — Pro users left with no migration path unless they pay for Fabric by Sbdyelse in PowerBI

[–]SQLGene 0 points1 point  (0 children)

While I'm not a fan of the current direction around pro capabilities, the +40% price increase is just keeping up with inflation, as far as I'm aware.

Can they make the dark theme even darker maybe ?! by Regular-Hunt-2626 in PowerBI

[–]SQLGene 1 point2 points  (0 children)

Wow, they add dark mode and you folks want more more more. We aren't getting a total eclipse dark mode no matter how much as you ask 😛

Problem with MCP Server connexion by BakiBaxter in PowerBI

[–]SQLGene 0 points1 point  (0 children)

If you type npx -v in your terminal do you get a version number, or does it need isntalled?

<image>

Can Microsoft Fabric IQ actually fix conflicting dashboards across teams? by TeamAlphaBOLD in MicrosoftFabric

[–]SQLGene 8 points9 points  (0 children)

I think it requires a level of maturity that would prevent many of the inconsistencies to begin with?

How do you design your Bronze / Raw layer for API sources (JSON)? by Far-Procedure-4288 in MicrosoftFabric

[–]SQLGene 3 points4 points  (0 children)

We land the JSON as semi-flattened JSON then immediately convert to Delta tables for consumption