Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
We’re exploring support for computed columns in Fabric DW - columns derived from expressions over other columns (for example, totals, normalized values, or derived flags).
For eg:
CREATE TABLE Products (
Price decimal(10, 2),
Tax decimal(10, 2),
TotalPrice AS (Price + Tax) PERSISTED
);
These columns are not physically stored (unless marked as PERSISTED in SQL Server) but are computed on the fly during query execution. Computed columns are supported in SQL Server and Azure Synapse.
Would this be useful for your workloads?
• What scenarios would you use computed columns for?
• Would you prefer persisted vs non‑persisted?
• Any performance or usability considerations we should keep in mind?
We’d love to hear your feedback.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.