Azure End-To-End Data Engineering Project for Beginners | Real Time Tutorial

Поділитися
Вставка
  • Опубліковано 4 жов 2024
  • I hope you enjoyed, any comments questions or queries lmk.
    This project addresses a critical business need by building a comprehensive data pipeline on Azure. The goal is to extract customer and sales data from an on-premises SQL database, transform it in the cloud, and generate actionable insights through a Power BI dashboard. The dashboard will highlight key performance indicators (KPIs) related to gender distribution and product category sales, allowing stakeholders to filter and analyze data by date, product category, and gender.
    Tech Stack: On-Prem SQL DB, Data Factory, Data Lake Gen 2, Databricks, Synapse Analytics, Power BI, Entra ID (Active Directory), Key Vault
    GitHub: github.com/luk...
    Further detail on setting up SSMS and SQL: • Data Analyst Portfolio...
    How to set up PowerBI without work email: • How to use Power BI wi...
    Mr Ks original vid: • An End to End Azure Da...
  • Наука та технологія

КОМЕНТАРІ • 14

  • @mr.ktalkstech
    @mr.ktalkstech 4 дні тому +1

    Would've been nice to get some credit for using my video as a reference. Please do it in the future. Good luck with yours, though :)

    • @cloudconsultant
      @cloudconsultant  4 дні тому +2

      Hi, at 00:20 I give you credit. Not having your vid in description was simply an oversight - in there now. Likewise :)

    • @mr.ktalkstech
      @mr.ktalkstech 4 дні тому

      @@cloudconsultant Thank you :)

    • @MexiqueInc
      @MexiqueInc 3 дні тому +3

      I originally developed this project with your video . I came here because all the code is available for reviewing it if you get stuck. Which makes a huge difference. He also make great job attending sql server connections issues, creating the resources and other thing you fast forwaded.Therefore it took lots of hours to figure it out. WIshing success to both.

    • @mr.ktalkstech
      @mr.ktalkstech 3 дні тому

      @@MexiqueInc That's great to know, happy his video is adding more value :)

    • @cloudconsultant
      @cloudconsultant  3 дні тому

      @@MexiqueInc Thank you 🙏

  • @rakshithuk7414
    @rakshithuk7414 Місяць тому +1

    1st View, 1st Like. All the best. Your video Added to playlist and will be watched soon. Thanks for the project.

    • @cloudconsultant
      @cloudconsultant  29 днів тому

      Thanks Rakshith 🙏 I hope it helps.

    • @apdoelepe7937
      @apdoelepe7937 28 днів тому

      Could u please put the github link for the projects in the description because i want to see the documentation

    • @cloudconsultant
      @cloudconsultant  28 днів тому +1

      In description now mate!

  • @AurelieAKA
    @AurelieAKA 4 дні тому

    Hi Luke,
    Can I load my data directly in Azure Synapse without going through Databricks, considering that my data is already structured from SQL Server ?

  • @LadyM827
    @LadyM827 9 днів тому

    Hi Luke on 57.13 i can't see the sql script , can you please assist to write it down here on the comments.

    • @cloudconsultant
      @cloudconsultant  9 днів тому +1

      Hi! Yes, of course:
      SELECT
      s.name AS SchemaName,
      t.Name AS TableName
      FROM sys.tables t
      INNER JOIN sys.schemas s
      ON t.schema_id = s.schema_id
      WHERE s.name = 'SalesLT'