<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Need advice on the Gold Layer in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4680261#M9073</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/466403"&gt;@dtran9936&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We haven’t received a response yet and want to ensure the solution met your needs. If you need any further assistance, feel free to reach out we’d be happy to help. If everything is working as expected, kindly mark it as&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Accepted&amp;nbsp;as solution.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You.&lt;/P&gt;</description>
    <pubDate>Mon, 05 May 2025 11:56:48 GMT</pubDate>
    <dc:creator>V-yubandi-msft</dc:creator>
    <dc:date>2025-05-05T11:56:48Z</dc:date>
    <item>
      <title>Need advice on the Gold Layer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4671218#M8902</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just need some guidance on the best practice on the medallion layer. Let me explain the scenario&lt;/P&gt;&lt;P&gt;Scenario is in Incremental ELT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bronze (Lakehouse): Load delta data base on Watermark filed (Last modied date)&lt;/P&gt;&lt;P&gt;Silver (Lakehouse): Using Data pipeline to append the delta load with cleansing&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: if I have a record that is modified today, the will be two records in the Bronze and Silver Layer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At the Gold Layer (Warehouse), should I create view to make that specific table unique then build my SP query through a view? Or build it directly into the SP query.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope I explain it correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you Again.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 14:06:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4671218#M8902</guid>
      <dc:creator>dtran9936</dc:creator>
      <dc:date>2025-04-28T14:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need advice on the Gold Layer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4671477#M8909</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/466403"&gt;@dtran9936&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I think you should start by building a Gold View that handles deduplication first. After that, Stored Procedures should simply query this clean, pre-processed Gold View.&lt;/P&gt;&lt;P&gt;By doing this, Stored Procedures stay simple and focused only on business logic, without having to deal with cleaning the data. If the deduplication rules change later, you only need to update the Gold View, not multiple Stored Procedures. This makes the system easier to maintain and more flexible.&lt;/P&gt;&lt;P&gt;The "latest record" logic is contained within the Gold View, which makes it easier to test and validate separately from the business logic. Since the Gold View handles deduplication and selects the most recent records, it can be tested on its own, without involving other parts of the system. This separation makes the whole system more organized and easier to manage.&lt;/P&gt;&lt;P&gt;As far as I know, this approach follows best practices for creating a clean, modular, and maintainable system. It keeps your business logic separate from data processing, which helps make the system more flexible and easier to work with over time.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 16:04:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4671477#M8909</guid>
      <dc:creator>ucarbengisu</dc:creator>
      <dc:date>2025-04-28T16:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Need advice on the Gold Layer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4672115#M8916</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/466403"&gt;@dtran9936&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Best practice is to create a Gold View to manage deduplication first, followed by building Stored Procedures on top of this clean view. This approach has several advantages&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Keeps business logic and data cleaning distinct for better clarity and organization.&lt;/LI&gt;
&lt;LI&gt;Makes Stored Procedures more straightforward and easier to manage over time.&lt;/LI&gt;
&lt;LI&gt;Allows seamless updates if deduplication rules need to be modified.&lt;/LI&gt;
&lt;LI&gt;Facilitates testing and validation of the latest records independently.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Thank you for your valuble input&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1267270"&gt;@ucarbengisu&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If my response resolved your query, kindly mark it as the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Accepted Solution&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;to assist others. Additionally, I would be grateful for a&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;'Kudos'&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;if you found my response helpful.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 05:09:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4672115#M8916</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-04-29T05:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: Need advice on the Gold Layer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4677471#M9029</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/466403"&gt;@dtran9936&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please &lt;STRONG&gt;Accept it as a solution&lt;/STRONG&gt; and give it a '&lt;STRONG&gt;Kudos&lt;/STRONG&gt;' so others can find it easily.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 11:17:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4677471#M9029</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-05-02T11:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Need advice on the Gold Layer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4680261#M9073</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/466403"&gt;@dtran9936&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We haven’t received a response yet and want to ensure the solution met your needs. If you need any further assistance, feel free to reach out we’d be happy to help. If everything is working as expected, kindly mark it as&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Accepted&amp;nbsp;as solution.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 11:56:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4680261#M9073</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-05-05T11:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need advice on the Gold Layer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4685393#M9160</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/466403"&gt;@dtran9936&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and &lt;STRONG&gt;accept it as the solution.&lt;/STRONG&gt; This will be helpful for other community members who have similar problems to solve it faster.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 16:40:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4685393#M9160</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-05-08T16:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Need advice on the Gold Layer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4685892#M9168</link>
      <description>&lt;P&gt;Hey there&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/466403"&gt;@dtran9936&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What will your SP queries do? Are your view tables in Gold simply coming from Silver and Bronze and that would result in unique tables (I'm assuming post processed cleaned data)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 05:08:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Need-advice-on-the-Gold-Layer/m-p/4685892#M9168</guid>
      <dc:creator>marcus_mck</dc:creator>
      <dc:date>2025-05-09T05:08:45Z</dc:date>
    </item>
  </channel>
</rss>

