<?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 How to create table in warehouse from the lakehouse without deduping the data in Data Warehouse</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/How-to-create-table-in-warehouse-from-the-lakehouse-without/m-p/4867748#M3911</link>
    <description>&lt;P&gt;I am researching about creating the transformed table directly into the warehouse from lakehouse.. Any suggestions&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Nov 2025 08:13:50 GMT</pubDate>
    <dc:creator>Ar_Sh</dc:creator>
    <dc:date>2025-11-06T08:13:50Z</dc:date>
    <item>
      <title>How to create table in warehouse from the lakehouse without deduping the data</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/How-to-create-table-in-warehouse-from-the-lakehouse-without/m-p/4867748#M3911</link>
      <description>&lt;P&gt;I am researching about creating the transformed table directly into the warehouse from lakehouse.. Any suggestions&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 08:13:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/How-to-create-table-in-warehouse-from-the-lakehouse-without/m-p/4867748#M3911</guid>
      <dc:creator>Ar_Sh</dc:creator>
      <dc:date>2025-11-06T08:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to create table in warehouse from the lakehouse without deduping the data</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Warehouse/How-to-create-table-in-warehouse-from-the-lakehouse-without/m-p/4867750#M3912</link>
      <description>&lt;P class=""&gt;To create a table in Microsoft Fabric Warehouse that references data from the Lakehouse without duplicating the data, the best approach is to use&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;cross-database queries&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;or&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;external tables/views&lt;/STRONG&gt;. These methods allow the Warehouse to query Lakehouse data directly without physically copying it.&lt;/P&gt;&lt;H2&gt;Options to Create Tables Without Data Duplication:&lt;/H2&gt;&lt;H2&gt;1. Use Cross-Database Queries (No Physical Copy)&lt;/H2&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;Fabric workspace supports querying Lakehouse tables directly in Warehouse SQL by using a three-part naming convention:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;SELECT&lt;/SPAN&gt; &lt;SPAN class=""&gt;*&lt;/SPAN&gt; &lt;SPAN class=""&gt;FROM&lt;/SPAN&gt; lakehouse_database&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;schema&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;table&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;This allows you to access live Lakehouse data from within the Warehouse query environment without copying data.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;You can create views in the Warehouse that reference Lakehouse tables, essentially creating virtual tables with zero data duplication:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;CREATE&lt;/SPAN&gt; &lt;SPAN class=""&gt;VIEW&lt;/SPAN&gt; warehouse_schema&lt;SPAN class=""&gt;.&lt;/SPAN&gt;view_name &lt;SPAN class=""&gt;AS&lt;/SPAN&gt; &lt;SPAN class=""&gt;SELECT&lt;/SPAN&gt; &lt;SPAN class=""&gt;*&lt;/SPAN&gt; &lt;SPAN class=""&gt;FROM&lt;/SPAN&gt; lakehouse_database&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;schema&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;table&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;2. Create External Tables (Virtual References)&lt;/H2&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;External tables in Fabric can reference Lakehouse storage paths without importing data to the Warehouse.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;This functionality exposes the Lakehouse data files as tables accessible from within the Warehouse without physically copying them.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;You define the external table pointing to the Delta Lake storage location of the Lakehouse.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;3. Cloning Tables (Zero-Copy Clones)&lt;/H2&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;Fabric supports zero-copy cloning of tables where a cloned table shares the same underlying storage and doesn’t duplicate data.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;This is helpful for test or development environments to create independent but storage-efficient table clones:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;CREATE&lt;/SPAN&gt; &lt;SPAN class=""&gt;TABLE&lt;/SPAN&gt; warehouse_schema&lt;SPAN class=""&gt;.&lt;/SPAN&gt;clone_table &lt;SPAN class=""&gt;AS&lt;/SPAN&gt; CLONE lakehouse_database&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;schema&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;original_table&lt;SPAN class=""&gt;;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;When to Use Each:&lt;/H2&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;Use&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;cross-database queries and views&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;when you want live access to Lakehouse data inside Warehouse queries without replication.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Use&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;external tables&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;if you want a table in Warehouse referencing Lakehouse storage for broader integration.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Use&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;clones&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;when you want independent tables with minimal storage without affecting the original data.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 06 Nov 2025 08:15:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Warehouse/How-to-create-table-in-warehouse-from-the-lakehouse-without/m-p/4867750#M3912</guid>
      <dc:creator>Shubham_rai955</dc:creator>
      <dc:date>2025-11-06T08:15:40Z</dc:date>
    </item>
  </channel>
</rss>

