Showing posts with label Microsoft Fabric. Show all posts
Showing posts with label Microsoft Fabric. Show all posts

24 May 2025

🏭🗒️Microsoft Fabric: Materialized Lake Views (MLV) [Notes] 🆕🗓️

Disclaimer: This is work in progress intended to consolidate information from various sources for learning purposes. For the latest information please consult the documentation (see the links below)! 

Last updated: 24-May-2025

-- create schema
CREATE SCHERA IF NOT EXISTS <lakehouse_name>.<schema_name>

-- create a materialized view
CREATE MATERIALIZED VIEW IF NOT EXISTS <lakehouse_name>.<schema_name>.<view_name> 
(
    CONSTRAINT <constraint_name> CHECK (<constraint>) ON MISMATCH DROP 
) 
AS 
SELECT ...
FROM ...
-- WHERE ...
--GROUP BY ...

[Microsoft Fabric] Materialized Lake Views (MLV)

  • {def} persisted, continuously updated view of data [1]
    • {benefit} allows to build declarative data pipelines using SQL, complete with built-in data quality rules and automatic monitoring of data transformations
      • simplifies the implementation of multi-stage Lakehouse processing [1]
        • streamline data workflows
        • enable developers to focus on business logic [1]
          • ⇐ not on infrastructural or data quality-related issues [1]
        • the views can be created in a notebook [2]
      • can have data quality constraints enforced and visualized for every run, showing completion status and conformance to data quality constraints defined in a single view [1]
      • empowers developers to set up complex data pipelines with just a few SQL statements and then handle the rest automatically [1]
        • faster development cycles 
        • trustworthy data
        • quicker insights
  • {goal} process only the new or changed data instead of reprocessing everything each time [1]
    • ⇐  leverages Delta Lake’s CDF under the hood
      • ⇒ it can update just the portions of data that changed rather than recompute the whole view from scratch [1]
  • {operation} creation
    • allows defining transformations at each layer [1]
      • e.g. aggregation, projection, filters
    • allows specifying certain checks that the data must meet [1]
      • incorporate data quality constraints directly into the pipeline definition
    • via CREATE MATERIALIZED LAKE VIEW
      • the SQL syntax is declarative and Fabric figures out how to produce and maintain it [1]
  • {operation} refresh
    • refreshes only when its source has new data [1]
      • if there’s no change, it can skip running entirely (saving time and resources) [1]
  • {feature} automatically generate a visual report that shows trends on data quality constraints 
    • {benefit} allows to easily identify the checks that introduce maximum errors and the associated MLVs for easy troubleshooting [1]
  • {feature} can be combined with Shortcut Transformation feature for CSV ingestion 
    • {benefit} allows building an end-to-end Medallion architecture
  • {feature} dependency graph
    • allows to see the dependencies existing between the various objects [2]
      • ⇐ automatically generated [2]
  • {feature} data quality report
    • built-in Power BI dashboard that shows several aggregated metrics [2]
  • {feature|planned} support for PySpark
  • {feature|planned} incremental refresh
  • {feature|planned} integration with Data Activator
Previous Post <<||>> Next Post

References:
[1] Microsoft Fabric Update Blog (2025) Simplifying Medallion Implementation with Materialized Lake Views in Fabric [link|aka]
[2] Power BI Tips (2025) Microsoft Fabric Notebooks with Materialized Views - Quick Tips [link]
[3] Microsoft Learn (2025)  [link]

Resources:
[R1] Databricks (2025) Use materialized views in Databricks SQL [link]

Acronyms:
CDF - Change Data Feed
ETL - Extract, Transfer, Load
MF - Microsoft Fabric
MLV - Materialized Lake views

23 May 2025

🏭🗒️Microsoft Fabric: Warehouse Snapshots [Notes] 🆕

Disclaimer: This is work in progress intended to consolidate information from various sources for learning purposes. For the latest information please consult the documentation (see the links below)! 

Last updated: 23-May-2025

[Microsoft Fabric] Warehouse Snapshots

  • {def} read-only representation of a warehouse at a specific point in time [1]
  • allows support for analytics, reporting, and historical analysis scenarios without worrying about the volatility of live data updates [1]
    • provide a consistent and stable view of data [1]
    • ensuring that analytical workloads remain unaffected by ongoing changes or ETL  operations [1]
  • {benefit} guarantees data consistency
    • the dataset remains unaffected by ongoing ETL processes [1]
  • {benefit} immediate roll-Forward updates
    • can be seamlessly rolled forward on demand to reflect the latest state of the warehouse
      • ⇒ {benefit} consumers access the same snapshot using a consistent connection string, even from third-party tools [1]
      • ⇐ updates are applied immediately, as if in a single, atomic transaction [1]
  • {benefit} facilitates historical analysis
    • snapshots can be created on an hourly, daily, or weekly basis to suit their business requirements [1]
  • {benefit} enhanced reporting
    • provides a point-in-time reliable dataset for precise reporting [1]
      • ⇐ free from disruptions caused by data modifications [1]
  • {benefit} doesn't require separate storage [1]
    • relies on source Warehouse [1]
  • {limit} doesn't support database objects 
  • {limit} capture a state within the last 30 days
  • {operation} create snapshot
    • via New warehouse snapshot
    • multiple snapshots can be created for the same parent warehouse [1]
      • appear as child items of the parent warehouse in the workspace view [1]
      • the queries run against provide the current version of the data being accessed [1]
  • {operation} read properties 
    • via 
    • GET https://api.fabric.microsoft.com/v1/workspaces/{workspaceId}/items/{warehousesnapshotId} Authorization: Bearer <bearer token>
  • {operation} update snapshot timestamp
    • allows users to roll forward data instantly, ensuring consistency [1]
      • use current state
        • via ALTER DATABASE [<snapshot name>] SET TIMESTAMP = CURRENT_TIMESTAMP; 
      • use point in time
        • ALTER DATABASE snapshot SET TIMESTAMP = 'YYYY-MM-DDTHH:MM:SS.SS'//UTC time
    • queries that are in progress during point in time update will complete against the version of data they were started against [1]
  • {operation} rename snapshot
  • {operation} delete snapshot
    • via DELETE
    • when the parent warehouse gets deleted, the snapshot is also deleted [1]
  • {operation} modify source table
    • DDL changes to source will only impact queries in the snapshot against tables affected [1]
  • {operation} join multiple snapshots
    • the resulting snapshot date will be applied to each warehouse connection [1]
  • {operation} retrieve metadata
    • via sys.databases [1]
  • [permissions] inherited from the source warehouse [1]
    • ⇐ any permission changes in the source warehouse applies instantly to the snapshot [1]
    • security updates on source database will be rendered immediately to the snapshot databases [1]
  • {limitation} can only be created against new warehouses [1]
    • created after Mar-2025
  • {limitation} do not appear in SSMS Object Explorer but will show up in the database selection dropdown [1]
  • {limitation} datetime can be set to any date in the past up to 30 days or database creation time (whichever is later)  [1]
  • {limitation} modified objects after the snapshot timestamp become invalid in the snapshot [1]
    • applies to tables, views, and stored procedures [1]
  • {limitation} must be recreated if the data warehouse is restored [1]
  • {limitation} aren’t supported on the SQL analytics endpoint of the Lakehouse [1]
  • {limitation} aren’t supported as a source for OneLake shortcuts [1]
  •  [Power BI]{limitation} require Direct Query or Import mode [1]
    • don’t support Direct Lake

    References:
    [1] Microsoft Learn (2025) Fabric: Warehouse Snapshots in Microsoft Fabric (Preview) [link]
    [2] Microsoft Learn (2025) Warehouse snapshots (preview) [link]
    [3] Microsoft Learn (2025) Create and manage a warehouse snapshot (preview) [link]

    Resources:


    Acronyms:
    DDL - Data Definition Language
    ETL - Extract, Transfer, Load
    MF - Microsoft Fabric
    SSMS - SQL Server Management Studio

    18 May 2025

    #️⃣Software Engineering: Mea Culpa (Part VII: A Look Forward)

    Software Engineering Series
    Software Engineering Series

    I worked for more than 20 years in various areas related to ERP systems - Data Migrations, Business Intelligence/Analytics, Data Warehousing, Data Management, Project Management, (data) integrations, Quality Assurance, and much more, having experience with IFS IV, Oracle e-Business Suite, MS Dynamics AX 2009 and during the past 3-7 years also with MS Dynamics 365 Finance, SCM & HR (in that order). Much earlier, I started to work with SQL Server (2000-2019), Oracle, and more recently with Azure Synapse and MS Fabric, writing over time more than 800 ad-hoc queries and reports for the various stakeholders, covering all the important areas, respectively many more queries for monitoring the various environments. 

    In the areas where I couldn’t acquire experience on the job, I tried to address this by learning in my free time. I did it because I take seriously my profession, and I want to know how (some) things work. I put thus a lot of time into trying to keep actual with what’s happening in the MS Fabric world, from Power BI to KQL, Python, dataflows, SQL databases and much more. These technologies are Microsoft’s bet, though at least from German’s market perspective, all bets are off! Probably, many companies are circumspect or need more time to react to the political and economic impulses, or probably some companies are already in bad shape. 

    Unfortunately, the political context has a broad impact on the economy, on what’s happening in the job market right now! However, the two aspects are not the only problem. Between candidates and jobs, the distance seems to grow, a dense wall of opinion being built, multiple layers based on presumptions filtering out voices that (still) matter! Does my experience matter or does it become obsolete like the technologies I used to work with? But I continued to learn, to keep actual… Or do I need to delete everything that reminds the old?

    To succeed or at least be hired today one must fit a pattern that frankly doesn’t make sense! Yes, soft skills are important though not all of them are capable of compensating for the lack of technical skills! There seems to be a tendency to exaggerate some of the qualities associated with skills, or better said, of hiding behind big words. Sometimes it feels like a Shakespearian inaccurate adaptation of the stage on which we are merely players.

    More likely, this lack of pragmatism will lead to suboptimal constructions that will tend to succumb under their own structure. All the inefficiencies need to be corrected, or somebody (or something) must be able to bear their weight. I saw this too often happening in ERP implementations! Big words don’t compensate for the lack of pragmatism, skills, knowledge, effort or management! For many organizations the answer to nowadays problems is more management, which occasionally might be the right approach, though this is not a universal solution for everything that crosses our path(s).

    One of society’s answers to nowadays’ problem seems to be the refuge in AI. So, I wonder – where I’m going now? Jobless, without an acceptable perspective, with AI penetrating the markets and making probably many jobs obsolete. One must adapt, but adapt to what? AI is brainless even if it can mimic intelligence! Probably, it can do more in time to the degree that many more jobs will become obsolete (and I’m wondering what will happen to all those people). 

    Conversely, to some trends there will be probably other trends against them, however it’s challenging to depict in clear terms the future yet in making. Society seems to be at a crossroad, more important than mine.

    Previous Post <<||>> Next Post

    29 April 2025

    🏭🗒️Microsoft Fabric: Purview [Notes]

    Disclaimer: This is work in progress intended to consolidate information from various sources for learning purposes. For the latest information please consult the documentation (see the links below)! 

    Last updated: 29-Apr-2025

    [Microsoft Purview] Purview
    • {def} comprehensive data governance and security platform designed to help organizations manage, protect, and govern their data across various environments [1]
      • incl. on-premises, cloud & SaaS applications [1]
      • provides the highest and most flexible level of functionality for data governance in MF [1]
        • offers comprehensive tools for 
          • data discovery
          • data classification
          • data cataloging
    • {capability} managing the data estate
      • {tool} dedicated portal
        • aka Fabric Admin portal
        • used to control tenant settings, capacities, domains, and other objects, typically reserved for administrators
      • {type} logical containers
        • used to control access to data and capabilities [1]
        • {level} tenants
          • settings for Fabric administrators [1]
        • {level} domains
          • group data that is relevant to a single business area or subject field [1]
        • {level} workspaces 
          • group Fabric items used by a single team or department [1]
      • {type} capacities
        • objects that limit compute resource usage for all Fabric workloads [1]
    • {capability} metadata scanning
      • extracts values from data lakes
        • e.g. names, identities, sensitivities, endorsements, etc. 
        • can be used to analyze and set governance policies [1]
    • {capability} secure and protect data
      • assure that data is protected against unauthorized access and destructive attacks [1]
      • compliant with data storage regulations applicable in your region [1]
      • {tool} data tags
        • allows to identity the sensitivity of data and apply data retentions and protection policies [1]
      • {tool} workspace roles
        • define the users who are authorized to access the data in a workspace [1]
      • {tool} data-level controls
        • used at the level of Fabric items
          • e.g. tables, rows, and columns to impose granular restrictions.
      • {tool} certifications
        • Fabric is compliant with many data management certifications
          • incl. HIPAA BAA, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27001, ISO/IEC 27701 [1]
    • {feature} OneLake data hub
      • allows users to find and explore the data in their estate.
    • {feature} endorsement
      • allows users to endorse a Fabric item to identity it as of high quality [1]
        • help other users to trust the data that the item contains [1]
    • {feature} data lineage
      • allows users to understand the flow of data between items in a workspace and the impact that a change would have [1]
    • {feature} monitoring hub
      • allows to monitor activities for the Fabric items for which the user has the permission to view [1]
    • {feature} capacity metrics
      • app used to monitor usage and consumption
    • {feature} allows to automate the identification of sensitive information and provides a centralized repository for metadata [1]
    • feature} allows to find, manage, and govern data across various environments
      • incl. both on-premises and cloud-based systems [1]
      • supports compliance and risk management with features that monitor regulatory adherence and assess data vulnerabilities [1]
    • {feature} integrated with other Microsoft services and third-party tools 
      • {benefit} enhances its utility
      • {benefit} streamlines data access controls
        • enforcing policies, and delivering insights into data lineage [1]
    • {benefit} helps organizations maintain data integrity, comply with regulations, and use their data effectively for strategic decision-making [1]
    • {feature} Data Catalog
      • {benefit} allows users to discover, understand, and manage their organization's data assets
        • search for and browse datasets
        • view metadata
        • gain insights into the data’s lineage, classification, and sensitivity labels [1]
      • {benefit} promotes collaboration
        • users can annotate datasets with tags to improve discoverability and data governance [1]
      • targets users and administrator
      • {benefit} allows to discover where patient records are held by searching for keywords [1]
      • {benefit} allows to label documents and items based on their sensitiveness [1]
      • {benefit} allows to use access policies to manage self-service access requests [1]
    • {feature} Information Protection
      • used to classify, label, and protect sensitive data throughout the organization [1]
        • by applying customizable sensitivity labels, users classify records. [1]
        • {concept} policies
          • define access controls and enforce encryption
          • labels follow the data wherever it goes
          • helps organizations meet compliance requirements while safeguarding data against accidental exposure or malicious threats [1]
      • allows to protect records with policies to encrypt data and impose IRM
    • {feature} Data Loss Prevention (DLP)
      • the practice of protecting sensitive data to reduce the risk from oversharing [2]
        • implemented by defining and applying DLP policies [2]
    • {feature} Audit
      • user activities are automatically logged and appear in the Purview audit log
        • e.g. creating files or accessing Fabric items
    • {feature} connect Purview to Fabric in a different tenant
      • all functionality is supported, except that 
        • {limitation} Purview's live view isn't available for Fabric items [1]
        • {limitation} the system can't identify user registration automatically [1]
        • {limitation} managed identity can’t be used for authentication in cross-tenant connections [1]
          • {workaround} use a service principal or delegated authentication [1]
    • {feature} Purview hub
      • displays reports and insights about Fabric items [1]
        • acts as a centralized location to begin data governance and access more advanced features [1]
        • via Settings >> Microsoft Purview hub
        • administrators see information about their entire organization's Fabric data estate
        • provides information about
          • Data Catalog
          • Information Protection
          • Audit
      • the data section displays tables and graphs that analyze the entire organization's items in MF
        • users only see information about their own Fabric items and data

    References:
    [1] Microsoft Learn (2024) Purview: Govern data in Microsoft Fabric with Purview[link]
    [2] Microsoft Learn (2024) Purview: Learn about data loss prevention [link]
    [3] Microsoft Learn (2024) [link]

    Resources:

    Acronyms:
    DLP - Data Loss Prevention
    M365 - Microsoft 365
    MF - Microsoft Fabric
    SaaS - Software-as-a-Service

    26 April 2025

    🏭🗒️Microsoft Fabric: Parameters in Dataflows Gen2 [Notes] 🆕

    Disclaimer: This is work in progress intended to consolidate information from various sources for learning purposes. For the latest information please consult the documentation (see the links below)! 

    Last updated: 26-Apr-2

    [Microsoft Fabric] Dataflow Gen2 Parameters

    • {def} parameters that allow to dynamically control and customize Dataflows Gen2
      • makes them more flexible and reusable by enabling different inputs and scenarios without modifying the dataflow itself [1]
      • the dataflow is refreshed by passing parameter values outside of the Power Query editor through either
        • Fabric REST API [1]
        • native Fabric experiences [1]
      • parameter names are case sensitive [1]
      • {type} required parameters
        • {warning} the refresh fails if no value is passed for it [1]
      • {type} optional parameters
      • enabled via Parameters >> Enable parameters to be discovered and override for execution [1]
    • {limitation} dataflows with parameters can't be
      • scheduled for refresh through the Fabric scheduler [1]
      • manually triggered through the Fabric Workspace list or lineage view [1]
    • {limitation} parameters that affect the resource path of a data source or a destination are not supported [1]
      • ⇐ connections are linked to the exact data source path defined in the authored dataflow
        • can't be currently override to use other connections or resource paths [1]
    • {limitation} can't be leveraged by dataflows with incremental refresh [1]
    • {limitation} supports only parameters of the type decimal number, whole number, text and true/false can be passed for override
      • any other data types don't produce a refresh request in the refresh history but show in the monitoring hub [1]
    • {warning} allow other users who have permissions to the dataflow to refresh the data with other values [1]
    • {limitation} refresh history does not display information about the parameters passed during the invocation of the dataflow [1]
    • {limitation} monitoring hub doesn't display information about the parameters passed during the invocation of the dataflow [1]
    • {limitation} staged queries only keep the last data refresh of a dataflow stored in the Staging Lakehouse [1]
    • {limitation} only the first request will be accepted from duplicated requests for the same parameter values [1]
      • subsequent requests are rejected until the first request finishes its evaluation [1]

    References:
    [1] Microsoft Learn (2025) Use public parameters in Dataflow Gen2 (Preview) [link

    Resources:
    [R1] Microsoft Fabric Blog (2025) Passing parameter values to refresh a Dataflow Gen2 (Preview) [link

    Acronyms:
    API - Application Programming Interface
    REST - Representational State Transfer

    🏭🗒️Microsoft Fabric: Deployment Pipelines [Notes]

    Disclaimer: This is work in progress intended to consolidate information from various sources for learning purposes. For the latest information please consult the documentation (see the links below)! 

    Last updated: 26-Apr-2025

    [Microsoft Fabric] Deployment Pipelines

    • {def} a structured process that enables content creators to manage the lifecycle of their organizational assets [5]
      • enable creators to develop and test content in the service before it reaches the users [5]
        • can simplify the deployment process to development, test, and production workspaces [5]
        • one Premium workspace is assigned to each stage [5]
        • each stage can have 
          • different configurations [5]
          • different databases or different query parameters [5]
    • {action} create pipeline
      • from the deployment pipelines entry point in Fabric [5]
        • creating a pipeline from a workspace automatically assigns it to the pipeline [5]
      • {action} define how many stages it should have and what they should be called [5]
        • {default} has three stages
          • e.g. Development, Test, and Production
          • the number of stages can be changed anywhere between 2-10 
          • {action} add another stage,
          • {action} delete stage
          • {action} rename stage 
            • by typing a new name in the box
          • {action} share a pipeline with others
            • users receive access to the pipeline and become pipeline admins [5]
          • ⇐ the number of stages are permanent [5]
            • can't be changed after the pipeline is created [5]
      • {action} add content to the pipeline [5]
        • done by assigning a workspace to the pipeline stage [5]
          • the workspace can be assigned to any stage [5]
      • {action|optional} make a stage public
        • {default} the final stage of the pipeline is made public
        • a consumer of a public stage without access to the pipeline sees it as a regular workspace [5]
          • without the stage name and deployment pipeline icon on the workspace page next to the workspace name [5]
      • {action} deploy to an empty stage
        • when finishing the work in one pipeline stage, the content can be deployed to the next stage [5] 
          • deployment can happen in any direction [5]
        • {option} full deployment 
          • deploy all content to the target stage [5]
        • {option} selective deployment 
          • allows select the content to deploy to the target stage [5]
        • {option} backward deployment 
          • deploy content from a later stage to an earlier stage in the pipeline [5] 
          • {restriction} only possible when the target stage is empty [5]
      • {action} deploy content between pages [5]
        • content can be deployed even if the next stage has content
          • paired items are overwritten [5]
      • {action|optional} create deployment rules
        • when deploying content between pipeline stages, allow changes to content while keeping some settings intact [5] 
        • once a rule is defined or changed, the content must be redeployed
          • the deployed content inherits the value defined in the deployment rule [5]
          • the value always applies as long as the rule is unchanged and valid [5]
      • {feature} deployment history 
        • allows to see the last time content was deployed to each stage [5]
        • allows to to track time between deployments [5]
    • {concept} pairing
      • {def} the process by which an item in one stage of the deployment pipeline is associated with the same item in the adjacent stage
        • applies to reports, dashboards, semantic models
        • paired items appear on the same line in the pipeline content list [5]
          • ⇐ items that aren't paired, appear on a line by themselves [5]
        • the items remain paired even if their name changes
        • items added after the workspace is assigned to a pipeline aren't automatically paired [5]
          • ⇐ one can have identical items in adjacent workspaces that aren't paired [5]
    • [lakehouse]
      • can be removed as a dependent object upon deployment [3]
      • supports mapping different Lakehouses within the deployment pipeline context [3]
      • {default} a new empty Lakehouse object with same name is created in the target workspace [3]
        • ⇐ if nothing is specified during deployment pipeline configuration
        • notebook and Spark job definitions are remapped to reference the new lakehouse object in the new workspace [3]
        • {warning} a new empty Lakehouse object with same name still is created in the target workspace [3]
        • SQL Analytics endpoints and semantic models are provisioned
        • no object inside the Lakehouse is overwritten [3]
        • updates to Lakehouse name can be synchronized across workspaces in a deployment pipeline context [3] 
    • [notebook] deployment rules can be used to customize the behavior of notebooks when deployed [4]
      • e.g. change notebook's default lakehouse [4]
      • {feature} auto-binding
        • binds the default lakehouse and attached environment within the same workspace when deploying to next stage [4]
    • [environment] custom pool is not supported in deployment pipeline
      • the configurations of Compute section in the destination environment are set with default values [6]
      • ⇐ subject to change in upcoming releases [6]
    • [warehouse]
      • [database project] ALTER TABLE to add a constraint or column
        • {limitation} the table will be dropped and recreated when deploying, resulting in data loss
      • {recommendation} do not create a Dataflow Gen2 with an output destination to the warehouse
        • ⇐ deployment would be blocked by a new item named DataflowsStagingWarehouse that appears in the deployment pipeline [10]
      • SQL analytics endpoint is not supported
    • [Eventhouse]
      • {limitation} the connection must be reconfigured in destination that use Direct Ingestion mode [8]
    • [EventStream]
      • {limitation} limited support for cross-workspace scenarios
        • {recommendation} make sure all EventStream destinations within the same workspace [8]
    • KQL database
      • applies to tables, functions, materialized views [7]
    • KQL queryset
      • ⇐ tabs, data sources [7]
    • [real-time dashboard]
      • data sources, parameters, base queries, tiles [7]
    • [SQL database]
      • includes the specific differences between the individual database objects in the development and test workspaces [9]
    • can be also used with

      References:
      [1] Microsoft Learn (2024) Get started with deployment pipelines [link]
      [2] Microsoft Learn (2024) Implement continuous integration and continuous delivery (CI/CD) in Microsoft Fabric [link]
      [3] Microsoft Learn (2024)  Lakehouse deployment pipelines and git integration (Preview) [link]
      [4] Microsoft Learn (2024) Notebook source control and deployment [link
      [5] Microsoft Learn (2024) Introduction to deployment pipelines [link]
      [6] Environment Git integration and deployment pipeline [link]
      [7] Microsoft Learn (2024) Microsoft Learn (2024) Real-Time Intelligence: Git integration and deployment pipelines (Preview) [link]
      [8] Microsoft Learn (2024) Eventstream CI/CD - Git Integration and Deployment Pipeline [link]
      [9] Microsoft Learn (2024) Get started with deployment pipelines integration with SQL database in Microsoft Fabric [link]
      [10] Microsoft Learn (2025) Source control with Warehouse (preview) [link

      Resources:

      Acronyms:
      CLM - Content Lifecycle Management
      UAT - User Acceptance Testing

      🏭🗒️Microsoft Fabric: Power BI Environments [Notes]

      Disclaimer: This is work in progress intended to consolidate information from various sources for learning purposes. For the latest information please consult the documentation (see the links below)! 

      Last updated: 26-Apr-2025

      Enterprise Content Publishing [2]

      [Microsoft Fabric] Power BI Environments

      • {def} structured spaces within Microsoft Fabric that helps organizations manage the Power BI assets through the entire lifecycle
      • {environment} development 
        • allows to develop the solution
        • accessible only to the development team 
          • via Contributor access
        • {recommendation} use Power BI Desktop as local development environment
          • {benefit} allows to try, explore, and review updates to reports and datasets
            • once the work is done, upload the new version to the development stage
          • {benefit} enables collaborating and changing dashboards
          • {benefit} avoids duplication 
            • making online changes, downloading the .pbix file, and then uploading it again, creates reports and datasets duplication
        • {recommendation} use version control to keep the .pbix files up to date
          • [OneDrive] use Power BI's autosync
            • {alternative} SharePoint Online with folder synchronization
            • {alternative} GitHub and/or VSTS with local repository & folder synchronization
        • [enterprise scale deployments] 
          • {recommendation} separate dataset from reports and dashboards’ development
            • use the deployment pipelines selective deploy option [22]
            • create separate .pbix files for datasets and reports [22]
              • create a dataset .pbix file and uploaded it to the development stage (see shared datasets [22]
              • create .pbix only for the report, and connect it to the published dataset using a live connection [22]
            • {benefit} allows different creators to separately work on modeling and visualizations, and deploy them to production independently
          • {recommendation} separate data model from report and dashboard development
            • allows using advanced capabilities 
              • e.g. source control, merging diff changes, automated processes
            • separate the development from test data sources [1]
              • the development database should be relatively small [1]
        • {recommendation} use only a subset of the data [1]
          • ⇐ otherwise the data volume can slow down the development [1]
      • {environment} user acceptance testing (UAT)
        • test environment that within the deployment lifecycle sits between development and production
          • it's not necessary for all Power BI solutions [3]
          • allows to test the solution before deploying it into production
            • all tests must have 
              • View access for testing
              • Contributor access for report authoring
          • involves business users who are SMEs
            • provide approval that the content 
              • is accurate
              • meets requirements
              • can be deployed for wider consumption
        • {recommendation} check report’s load and the interactions to find out if changes impact performance [1]
        • {recommendation} monitor the load on the capacity to catch extreme loads before they reach production [1]
        • {recommendation} test data refresh in the Power BI service regularly during development [20]
      • {environment} production
        • {concept} staged deployment
          • {goal} help minimize risk, user disruption, or address other concerns [3]
            • the deployment involves a smaller group of pilot users who provide feedback [3]
        • {recommendation} set production deployment rules for data sources and parameters defined in the dataset [1]
          • allows ensuring the data in production is always connected and available to users [1]
        • {recommendation} don’t upload a new .pbix version directly to the production stage
          •  ⇐ without going through testing
      • {feature|preview} deployment pipelines 
        • enable creators to develop and test content in the service before it reaches the users [5]
      • {recommendation} build separate databases for development and testing 
        • helps protect production data [1]
      • {recommendation} make sure that the test and production environment have similar characteristics [1]
        • e.g. data volume, sage volume, similar capacity 
        • {warning} testing into production can make production unstable [1]
        • {recommendation} use Azure A capacities [22]
      • {recommendation} for formal projects, consider creating an environment for each phase
      • {recommendation} enable users to connect to published datasets to create their own reports
      • {recommendation} use parameters to store connection details 
        • e.g. instance names, database names
        • ⇐  deployment pipelines allow configuring parameter rules to set specific values for the development, test, and production stages
          • alternatively data source rules can be used to specify a connection string for a given dataset
            • {restriction} in deployment pipelines, this isn't supported for all data sources
      • {recommendation} keep the data in blob storage under the 50k blobs and 5GB data in total to prevent timeouts [29]
      • {recommendation} provide data to self-service authors from a centralized data warehouse [20]
        • allows to minimize the amount of work that self-service authors need to take on [20]
      • {recommendation} minimize the use of Excel, csv, and text files as sources when practical [20]
      • {recommendation} store source files in a central location accessible by all coauthors of the Power BI solution [20]
      • {recommendation} be aware of API connectivity issues and limits [20]
      • {recommendation} know how to support SaaS solutions from AppSource and expect further data integration requests [20]
      • {recommendation} minimize the query load on source systems [20]
        • use incremental refresh in Power BI for the dataset(s)
        • use a Power BI dataflow that extracts the data from the source on a schedule
        • reduce the dataset size by only extracting the needed amount of data 
      • {recommendation} expect data refresh operations to take some time [20]
      • {recommendation} use relational database sources when practical [20]
      • {recommendation} make the data easily accessible [20]
      • [knowledge area] knowledge transfer
        • {recommendation} maintain a list of best practices and review it regularly [24]
        • {recommendation} develop a training plan for the various types of users [24]
          • usability training for read only report/app users [24
          • self-service reporting for report authors & data analysts [24]
          • more elaborated training for advanced analysts & developers [24]
      • [knowledge area] lifecycle management
        • consists of the processes and practices used to handle content from its creation to its eventual retirement [6]
        • {recommendation} postfix files with 3-part version number in Development stage [24]
          • remove the version number when publishing files in UAT and production 
        • {recommendation} backup files for archive 
        • {recommendation} track version history 

        References:
        [1] Microsoft Learn (2021) Fabric: Deployment pipelines best practices [link]
        [2] Microsoft Learn (2024) Power BI: Power BI usage scenarios: Enterprise content publishing [link]
        [3] Microsoft Learn (2024) Deploy to Power BI [link]
        [4] Microsoft Learn (2024) Power BI implementation planning: Content lifecycle management [link]
        [5] Microsoft Learn (2024) Introduction to deployment pipelines [link]
        [6] Microsoft Learn (2024) Power BI implementation planning: Content lifecycle management [link]
        [20] Microsoft (2020) Planning a Power BI  Enterprise Deployment [White paper] [link]
        [22] Power BI Docs (2021) Create Power BI Embedded capacity in the Azure portal [link]
        [24] Paul Turley (2019)  A Best Practice Guide and Checklist for Power BI Projects

        Resources:

        Acronyms:
        API - Application Programming Interface
        CLM - Content Lifecycle Management
        COE - Center of Excellence
        SaaS - Software-as-a-Service
        SME - Subject Matter Expert
        UAT - User Acceptance Testing
        VSTS - Visual Studio Team System
        SME - Subject Matter Experts

        25 April 2025

        🏭🗒️Microsoft Fabric: Dataflows Gen2's Incremental Refresh [Notes] 🆕

        Disclaimer: This is work in progress intended to consolidate information from various sources for learning purposes. For the latest information please consult the documentation (see the links below)! 

        Last updated: 25-Apr-2025

        [Microsoft Fabric] Incremental Refresh in Dataflows Gen2

        • {feature} enables to incrementally extract data from data sources, apply Power Query transformations, and load into various output destinations [5]
          • designed to reduce the amount of data that needs to be processed and retrieved from the source system [8]
          • configurable directly in the dataflow editor [8]
          • doesn't need to specify the historical data range [8]
            • ⇐ the dataflow doesn't remove any data from the destination that's outside the bucket range [8]
          • doesn't need to specify the parameters for the incremental refresh [8]
            • the filters and parameters are automatically added as the last step in the query [8]
        • {prerequisite} the data source 
          • supports folding [8]
          • needs to contain a Date/DateTime column that can be used to filter the data [8]
        • {prerequisite} the data destination supports incremental refresh [8]
          • available destinations
            • Fabric Warehouse
            • Azure SQL Database
            • Azure Synapse Analytics
            • Fabric Lakehouse [preview]
          • other destinations can be used in combination with incremental refresh by using a second query that references the staged data to update the data destination [8]
            • allows to use incremental refresh to reduce the amount of data that needs to be processed and retrieved from the source system [8]
              • a full refresh from the staged data to the data destination is still needed [8]
        • works by dividing the data into buckets based on a DateTime column [8]
          • each bucket contains the data that changed since the last refresh [8]
            • the dataflow knows what changed by checking the maximum value in the specified column 
              • if the maximum value changed for that bucket, the dataflow retrieves the whole bucket and replaces the data in the destination [8]
              • if the maximum value didn't change, the dataflow doesn't retrieve any data [8]
        • {limitation} 
          • the data destination must be set to a fixed schema [8]
          • ⇒table's schema in the data destination must be fixed and can't change [8]
            • ⇒ dynamic schema must be changed to fixed schema before configuring incremental refresh [8]
        • {limitation} the only supported update method in the data destination: replace
          • ⇒the dataflow replaces the data for each bucket in the data destination with the new data [8]
            • data that is outside the bucket range isn't affected [8]
        • {limitation} maximum number of buckets
          • single query: 50
            • {workaround} increase the bucket size or reduce the bucket range to lower the number of buckets [8]
          • whole dataflow: 150
            • {workaround} reduce the number of incremental refresh queries or increase the bucket size [8]
        • {downside} the dataflow may take longer to refresh after enabling incremental refresh [8]
          • because the additional overhead of checking if data changed and processing the buckets is higher than the time saved by processing less data [8]
          • {recommendation} review the settings for incremental refresh and adjust them to better fit the scenario
            • {option} increase the bucket size to reduce the number of buckets and the overhead of processing them [8]
            • {option} reduce the number of buckets by increasing the bucket size [8]
            • {option} disable incremental refresh [8]
        • {recommendation} don't use the column for detecting changes also for filtering [8]
          • because this can lead to unexpected results [8]
        • {setting} limit number of concurrent evaluation
          • setting the value to a lower number, reduces the number of requests sent to the source system [8]
          • via global settings >> Scale tab >> maximum number of parallel query evaluations
          • {recommendation} don't enable this limit unless there're issues with the source system [8]

        References:
        [5] Microsoft Learn (2023) Fabric: Save a draft of your dataflow [link]
        [8] Microsoft Learn (2025) Fabric: Incremental refresh in Dataflow Gen2 [link

        Resources:


        24 April 2025

        💎🏭SQL Reloaded: Microsoft Fabric's Lakehouses at Work (Part I: Proof-of-Concept)


        Introduction

        One way to work with the data files existing in organization is to import them into a lakehouse and build a data model based on them that can be reused in the various solutions (incl. Power BI). As a reminder, a lakehouse is a data architecture platform for storing, managing, and analyzing structured and unstructured data in a single location.

        The tutorials available on lakehouses are pretty useful for getting an idea how to start, though probably each seasoned professional has his/her way of doing things, at least for testing the capabilities before building a proper solution. The target is thus, to create the minimum for testing the capabilities needed for a proof-of-concept solution. 

        The files used in this post are available on Microsoft's GitHub. Download the files and store them to be easily available for the next steps. The following files were considered for the current post: customers.csv, orders.csv and products.csv.

        Create the Lakehouse

        It's recommended to have a naming convention in place for the various items created in a workspace, e.g. a combination between item type (lakehouse, warehouse), system type (Prod, UAT, Dev, PoC) and eventually department (e.g. FIN, SCM, HR, etc.). One should try to balance between meaning and usefulness. Ideally, one should use 2 maximum 4 letters for each part encoded in the name. For example, the following scripts were created in the LH_SCM_PoC lakehouse. 

        More complex naming conventions can include the system (e.g. D365, CRM, EBS) or the company. The target is to easily identify the systems, independently how complex the rules are. Given that it can become challenging to rename the schemas afterwards, ideally the naming convention should be available from the early stages. 

        Create the Schema

        A lakehouse comes with a dbo schema available by default, though it's recommended to create meaningful schema(s) as needed. The schemas should ideally reflect the domain of the data (e.g. departments or other key areas) and the schemas shouldn't change when the objects are deployed between the different environments. Upon case, one should consider creating multiple schemas that reflect the model's key areas. The names should be simple and suggestive.

        -- create schema
        CREATE Schema Orders
        

        Create a Staging Area

        The next step is to create a staging area where the files in scope can be made available and then further loaded in the lakehouse. One needs to compromise between creating a deep hierarchical structure that reflects the business structure and the need to easily identify, respectively manage the files. An hierarchical structure with 1-2 level could provide the needed compromise, though each additional level tends to increase the complexity. 

        One should also consider rules for archiving or even deleting the files.

        Upload the Files

        Microsoft Fabric allows users to upload multiple files together into a single step. Ideally the files should have proper names for each column, otherwise overheads deriving from this may appear later in the process. 

        When the files are available in multiple folders in a complex hierarchical structure, a set of shortcuts could help in their management.

        Load the Data

        A file's data can be loaded into the lakehouse on the fly by providing a valid table name:
        Files >> SCM_Orders >> (select file) >> Load to Tables >> new table >> Load file to new table >> (provide information) >> Load

        Load file to new table


        Of course, the table's name must be unique within the Schema and the further properties must define files' definition. 

        One should consider loading first a couple of tables, performing a rough validation of the data imported, and only after that the remaining tables can be imported. This allows to identify the issues that typically lead to reimports of the data (wrong formatting, invalid column names, duplicated files, etc.) or rework.

        If the files have different characteristics (e.g. delimiters, number of attributes/records, special data types), one should consider this in the initial scope and have at least one example from each category. 

        Review the Metadata

        Once the files were made available, there's the tendency to start directly with the development without analyzing the data, or equally important, the metadata available. To review the metadata of the tables newly created, one can use the objects from the standard INFORMATION_SCHEMA (see post):

        -- retrieve the list of tables
        SELECT * 
        FROM INFORMATION_SCHEMA.TABLES
        
        WHERE TABLE_SCHEMA = 'orders'
        ORDER BY TABLE_SCHEMA  

        Further on, one can review columns' definition:
         
        -- retrieve column metadata
        SELECT TABLE_CATALOG
        , TABLE_SCHEMA
        , TABLE_NAME
        , COLUMN_NAME
        , ORDINAL_POSITION
        , DATA_TYPE
        , CHARACTER_MAXIMUM_LENGTH
        , NUMERIC_PRECISION
        , NUMERIC_SCALE
        , DATETIME_PRECISION
        , CHARACTER_SET_NAME
        FROM INFORMATION_SCHEMA.COLUMNS
        WHERE TABLE_SCHEMA = 'orders'
        ORDER BY ORDINAL_POSITION

        It's a good idea to save the metadata to a file and use it later for reviews, respectively for metadata management, when no other solution is in place for the same (e.g. Purview). That's useful also for the people with limited or no access to the workspace. 

        Alternatively, one can use a notebook with the following SQL-based commands: 

        %%sql
        
        DESCRIBE TABLE LH_SCM_PoC.orders.sales;
        
        DESCRIBE TABLE EXTENDED LH_SCM_PoC.orders.sales;
        

        One can even provide meaningful descriptions for each table and its attributes via scripts like the ones below, however it might be a good idea to do this in the later phases of the PoC, when the logic become stable:

        %%sql
        
        -- modify a table's COMMENT
        COMMENT ON TABLE LH_SCM_PoC.orders.sales IS 'Customer sales orders';
        
        -- modify columns' COMMENT for an existing table
        ALTER TABLE LH_SCM_DWH.orders.sales  
        ALTER COLUMN SalesOrderNumber COMMENT 'Sales Order Number';
        

        Data Validation

        Before diving into building any business logic, besides identifying the primary, foreign keys and further attributes used in bringing the data together, it's recommended to get an overview of data's intrinsic and extrinsic characteristics relevant to the analysis. Some of the rules used typically for studying the quality of data apply to some extent also in here, though one needs to prioritize accordingly, otherwise one replicates the effort that's typically part of the Data Management initiatives. 

        In addition, it's important to check how much the identified issues impact the business logic, respectively on whether the issues can be corrected to match the expectations. Often, no logic can compensate for major  data quality issues, and this can also affect  PoC's results as soon as the outcomes are validated against the expectations! 

        Data Understanding 

        Further on, it makes sense to get a high-level understanding of the data by looking at the distribution of values, respectively at the records participating in the joins. Of course, more similar queries can be built, though again, one should try to focus on the most important aspects!

        The analysis could for example consider the following points:

        /* validation of Products */
        
        -- review duplicated product numbers (should be 0)
        SELECT ProductName
        , count(*) RecordCount
        FROM orders.products
        GROUP BY ProductName
        HAVING count(*)>1
        
        -- review most (in)expensive products
        SELECT top 100 ProductID
        , ProductName
        , Category
        , ListPrice 
        FROM orders.products
        ORDER BY ListPrice DESC --ASC
        
        -- review category distribution
        SELECT Category
        , count(*) RecordCount 
        FROM orders.products
        GROUP BY Category
        ORDER BY RecordCount DESC
        
        -- review price ranges (
        SELECT Len(floor(ListPrice)) RangeCount
        , count(*) RecordCount 
        FROM orders.products
        GROUP BY Len(floor(ListPrice)) 
        ORDER BY RangeCount DESC
        
        /* validation of Customers */
        
        -- duplicated email address 
        SELECT CST.CustomerID
        , CST.FirstName
        , CST.LastName 
        , CST.EmailAddress 
        , DUP.RecordCount
        FROM (-- duplicates
        	SELECT EmailAddress
        	, count(*) RecordCount 
        	FROM orders.customers 
        	GROUP BY EmailAddress 
        	HAVING count(*)>1
        	) DUP
        	JOIN orders.customers CST
        	   ON DUP.EmailAddress = CST.EmailAddress
        ORDER BY DUP.RecordCount DESC
        , DUP.EmailAddress 
        
        -- duplicated Customer names (not necessarily duplicates)
        SELECT CST.CustomerID
        , CST.FirstName
        , CST.LastName 
        , CST.EmailAddress 
        , DUP.RecordCount
        FROM (-- duplicates
        	SELECT FirstName
        	, LastName
        	, count(*) RecordCount 
        	FROM orders.customers 
        	GROUP BY FirstName
        	, LastName 
        	HAVING count(*)>1
        	) DUP
        	JOIN orders.customers CST
        	   ON DUP.FirstName = CST.FirstName
              AND DUP.LastName = CST.LastName
        ORDER BY DUP.RecordCount DESC
        , DUP.FirstName
        , DUP.LastName
        
        /* validation of Orders */
        
        -- review a typical order
        SELECT SalesOrderID
        , OrderDate
        , CustomerID
        , LineItem
        , ProductID
        , OrderQty
        , LineItemTotal
        FROM orders.orders
        WHERE SalesOrderID = 71780
        ORDER BY SalesOrderID 
        , LineItem
        
        -- review orders' distribution by month
        SELECT Year(OrderDate) Year
        , Month(OrderDate) Month
        , count(*) RecordCount
        FROM orders.orders
        GROUP BY Year(OrderDate) 
        , Month(OrderDate) 
        ORDER BY Year
        , Month
        
        -- checking for duplicates
        SELECT SalesOrderID
        , LineItem
        , count(*) RecordCount
        FROM orders.orders ord 
        GROUP BY SalesOrderID
        , LineItem
        HAVING count(*)>1
        
        -- checking for biggest orders
        SELECT SalesOrderID
        , count(*) RecordCount
        FROM orders.orders ord 
        GROUP BY SalesOrderID
        HAVING count(*) > 10
        ORDER BY NoRecords DESC
        
        -- checking for most purchased products
        SELECT ProductID
        , count(*) NoRecords
        FROM orders.orders ord 
        GROUP BY ProductID
        HAVING count(*) > 8
        ORDER BY NoRecords DESC
        
        -- checking for most active customers
        SELECT CustomerID
        , count(*) RecordCount
        FROM orders.orders ord 
        GROUP BY CustomerID
        HAVING count(*) > 10
        ORDER BY RecordCount DESC
        
        /* join checks */
        
        -- Prders without Product (should be 0)
        SELECT count(*) RecordCount
        FROM orders.orders ord 
        	 LEFT JOIN orders.products prd
        	   ON ord.ProductID = prd.ProductID
        WHERE prd.ProductID IS NULL
        
        -- Prders without Customer (should be 0)
        SELECT count(*) RecordCount
        FROM orders.orders ORD 
        	 LEFT JOIN orders.customers CST
        	   ON ORD.CustomerID = CST.CustomerID
        WHERE CST.CustomerID IS NULL
        
        -- Products without Orders (153 records)
        SELECT count(*) RecordCount
        FROM orders.products prd
        	 LEFT JOIN orders.orders ord 
        	   ON prd.ProductID = ord.ProductID 
        WHERE ord.ProductID IS NULL
        
        
        -- Customers without Orders (815 records)
        SELECT count(*) RecordCount
        FROM orders.customers CST
        	 LEFT JOIN orders.orders ORD
        	   ON ORD.CustomerID = CST.CustomerID
        WHERE ORD.CustomerID IS NULL
        

        The more tables are involved, the more complex the validation logic can become. One should focus on the most important aspects.

        Building the Logic

        Once one has an acceptable understanding of the data entities involved and the relation between them, it's time to build the needed business logic by joining the various tables at the various levels of detail. One can focus on the minimum required, respectively attempt to build a general model that can address a broader set of requirements. For the PoC it's usually recommended to start small by addressing the immediate requirements, though some flexibility might be needed for exploring the data and preparing the logic for a broader set of requirements. Independently of the scope, one should consider a set of validations. 

        Usually, it makes sense to encapsulate the logic in several views or table-valued functions that reflect the logic for the main purposes and which allow a high degree of reuse (see [1]). Of course, one can use the standard approach for modelling the bronze, silver, respectively the gold layers adopted by many professionals. For a PoC, even if  that's not mandatory, it might still be a good idea to make steps in the respective direction. 

        In this case, dealing with only three tables - a fact table and two dimensions table - there are several perspectives that can be built:

        a) all records from fact table + dimension records

        The following view provides the lowest level of details for the fact table, allowing thus to look at the data from different perspectives as long as focus is only the values used is Sales Orders:

        -- create the view
        CREATE OR ALTER VIEW orders.vSalesOrders
        -- Sales Orders with Product & Customer information
        AS
        SELECT ORD.SalesOrderID
        , ORD.OrderDate
        , ORD.CustomerID
        , CST.FirstName 
        , CST.LastName
        , CST.EmailAddress
        , ORD.LineItem
        , ORD.ProductID
        , PRD.ProductName 
        , PRD.Category
        , ORD.OrderQty
        , ORD.LineItemTotal
        , PRD.ListPrice 
        , ORD.OrderQty * PRD.ListPrice ListPriceTotal
        FROM orders.orders ORD 
        	 JOIN orders.products PRD
        	   ON ORD.ProductID = PRD.ProductID
        	 JOIN orders.customers CST
        	   ON ORD.CustomerID = CST.CustomerID
        
        -- test the view   
        SELECT *
        FROM orders.vSalesOrders
        WHERE SalesOrderID = 71780
        

        One can use full joins unless some of the references dimensions are not available.  

        b) aggregated data for all dimension combinations

        The previous view allows to aggregate the data at the various levels of details:

        -- Sales volume by Customer & Product
        SELECT ORD.EmailAddress
        , ORD.ProductName 
        , ORD.Category
        , SUM(ORD.OrderQty) OrderQty
        , SUM(ORD.LineItemTotal) LineItemTotal
        FROM orders.vSalesOrders ORD 
        WHERE ORD.OrderDate >= '2022-06-01'
          AND ORD.OrderDate < '2022-07-01'
        GROUP BY ORD.EmailAddress
        , ORD.ProductName 
        , ORD.Category
        ORDER BY ORD.EmailAddress
        , ORD.ProductName 
        

        One can comment out the dimensions not needed. The query can be included in a view as well. 

        c) all records from each dimension table + aggregated fact records

        Sometimes, it's useful to look at the data from a dimension's perspective, though it might be needed to create such an object for each dimension, like in the below examples. For the maximum of flexibility the logic can be included in a table-valued function:

        -- create the user-defined function
        CREATE OR ALTER FUNCTION orders.tvfProductsSalesVolume(
            @StartDate date NULL,
            @EndDate date NULL
        )
        RETURNS TABLE
        -- Sales volume by Product
        AS
        RETURN (
        SELECT PRD.ProductID
        , PRD.ProductName 
        , PRD.Category
        , ORD.FirstOrderDate
        , ORD.LastOrderDate 
        , IsNull(ORD.TotalSalesQty, 0) TotalSalesQty 
        , IsNull(ORD.TotalSalesValue, 0) TotalSalesValue
        , IsNull(ORD.OrderCount, 0) OrderCount
        , IsNull(ORD.LineCount, 0) LineCount
        FROM orders.products PRD
             OUTER APPLY (
        		SELECT Min(ORD.OrderDate) FirstOrderDate
        		, Max(ORD.OrderDate) LastOrderDate 
        		, SUM(ORD.OrderQty) TotalSalesQty
        		, SUM(ORD.LineItemTotal) TotalSalesValue
        		, count(DISTINCT SalesOrderID) OrderCount
        		, count(*) LineCount
        		FROM orders.orders ORD 
        		WHERE ORD.ProductID = PRD.ProductID
        		  AND ORD.OrderDate >= @StartDate 
        		  AND ORD.OrderDate < @EndDate 
        	 ) ORD
        );
        
        -- test the user-defined function
        SELECT *
        FROM orders.tvfProductsSalesVolume('2022-06-01','2022-07-01') PRD
        WHERE TotalSalesValue <> 0
        ORDER BY TotalSalesValue DESC
        , LastOrderDate DESC
        
        
        -- create the user-defined function
        CREATE OR ALTER FUNCTION orders.tvfCustomersSalesVolume(
            @StartDate date NULL,
            @EndDate date NULL
        )
        RETURNS TABLE
        -- Sales volume by Customer
        AS
        RETURN (
        SELECT CST.CustomerID
        , CST.FirstName 
        , CST.LastName
        , CST.EmailAddress
        , ORD.FirstOrderDate
        , ORD.LastOrderDate 
        , IsNull(ORD.TotalSalesValue, 0) TotalSalesValue
        , IsNull(ORD.OrderCount, 0) OrderCount
        , IsNull(ORD.LineCount, 0) LineCount
        FROM orders.customers CST
             OUTER APPLY (
        		SELECT Min(ORD.OrderDate) FirstOrderDate
        		, Max(ORD.OrderDate) LastOrderDate 
        		, SUM(ORD.LineItemTotal) TotalSalesValue
        		, count(DISTINCT SalesOrderID) OrderCount
        		, count(*) LineCount
        		FROM orders.orders ORD 
        		WHERE ORD.CustomerID = CST.CustomerID
        		  AND ORD.OrderDate >= @StartDate 
        		  AND ORD.OrderDate < @EndDate 
        	 ) ORD
        );
        
        -- test the user-defined function
        SELECT *
        FROM orders.tvfCustomersSalesVolume('2022-06-01','2022-07-01') PRD
        WHERE TotalSalesValue <> 0
        ORDER BY TotalSalesValue DESC
        , LastOrderDate DESC
        

        When restructuring the queries in similar ways, there's always a compromise between the various factors: (re)usability, performance or completeness. 

        Further Comments

        The above database objects should allow users to address most of the requirements, though, as usual, there can be also exceptions, especially when the data needs to be aggregated at a different level of detail that requires the query to be structured differently.

        The number of perspectives can increase also with the number of fact tables used to model a certain entity (e.g. Sales order headers vs. lines). For example, 

        In theory, one can also find ways to automate the process of creating database objects, though one must choose the relevant attributes, respectively include logic that makes sense only within a certain perspective. 

        No matter the data, respectively systems used as source, expect surprises and test your assumptions! For example, in the file used to create the orders.customers table, there seem to be duplicated entities with the same name and email address. One must clarify how such entities must be handled in data analysis, respectively in data modeling. For example, a person can appear twice because of the roles associated with the name or can be other entitled reasons. 

        The files in scope of this post are small compared with the files existing in organizations. In many scenarios files' size could range from GB to TB and thus require partitioning and different other strategies. 

        |>> Next Post

        References
        [1] sql-troubles (2023) Architecture Part IV: Building a Modern Data Warehouse with Azure Synapse [link]

        Resources
        [1] Microsoft Learn (2024) Fabric: Lakehouse and Delta Lake tables [link]

        Related Posts Plugin for WordPress, Blogger...

        About Me

        My photo
        Koeln, NRW, Germany
        IT Professional with more than 25 years experience in IT in the area of full life-cycle of Web/Desktop/Database Applications Development, Software Engineering, Consultancy, Data Management, Data Quality, Data Migrations, Reporting, ERP implementations & support, Team/Project/IT Management, etc.