<?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: Can we Load Data from lakehouse to warehouse in Microsoft fabric using Notebook in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4773125#M11166</link>
    <description>&lt;P&gt;Fabric supports loading data from lakehouse to warehouse using notebook by involking libraries.&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; com.microsoft.spark.fabric&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;from&lt;/SPAN&gt;&lt;SPAN&gt; com.microsoft.spark.fabric.Constants &lt;/SPAN&gt;&lt;SPAN&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; Constants&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;read data from lakehouse and write into warehouse.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;df&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;write&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;mode&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'append'&lt;/SPAN&gt;&lt;SPAN&gt;).synapsesql(&lt;/SPAN&gt;&lt;SPAN&gt;"warehouse.dbo.table1"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 23 Jul 2025 06:43:40 GMT</pubDate>
    <dc:creator>BalajiL</dc:creator>
    <dc:date>2025-07-23T06:43:40Z</dc:date>
    <item>
      <title>Can we Load Data from lakehouse to warehouse in Microsoft fabric using Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4038820#M2990</link>
      <description>&lt;P&gt;Hi Community,&lt;BR /&gt;&lt;BR /&gt;In Microsoft fabric i have lakehouse that has the landing raw data from other source, Now i want to build aggregate tables on top of this data in a warehouse using notebook.&lt;/P&gt;&lt;P&gt;I have this lakehouse and warehouse in the same fabric workspace only.&lt;BR /&gt;I want to perform a Full Load(Truncate and Load) operation in the warehouse using the notebook how to do?&lt;BR /&gt;Can any one say how to conncet to the warehouse in fabric using notebook and write the data to it.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2024 07:41:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4038820#M2990</guid>
      <dc:creator>Shanthan118</dc:creator>
      <dc:date>2024-07-12T07:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Can we Load Data from lakehouse to warehouse in Microsoft fabric using Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4039134#M2995</link>
      <description>&lt;P&gt;I don't think it's possible to write data to Fabric Data Warehouse by using Notebook.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you can only use T-SQL (scripts, stored procedures) inside the Data Warehouse interface, or use Data Pipeline or Dataflow Gen2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However I am interested if anyone knows how to write data to Fabric Data Warehouse by using Notebook.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2024 09:44:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4039134#M2995</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-07-12T09:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Can we Load Data from lakehouse to warehouse in Microsoft fabric using Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4039275#M2997</link>
      <description>&lt;P&gt;Just a heads up that Truncate is not a supported operation as of now:&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/tsql-surface-area" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/data-warehouse/tsql-surface-area&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For your question, I have used a stored procedured and scheduled in a pipeline for this data movement. However, you can do this:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;1. In your notebook, connect to the warehouse via pyodbc. Use a service principal if you need to automate this, else I have used DeviceCodeCredential(&lt;SPAN&gt;callback&lt;/SPAN&gt;&lt;SPAN&gt;=device_code_callback)&amp;nbsp; &amp;lt; for interactive authentication&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;2. Drop your table&lt;/LI&gt;&lt;LI&gt;3. Create new table&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;4. Write data to the table&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;//Alexander&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2024 10:47:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4039275#M2997</guid>
      <dc:creator>AlexanderPowBI</dc:creator>
      <dc:date>2024-07-12T10:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Can we Load Data from lakehouse to warehouse in Microsoft fabric using Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4041328#M3013</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/705825"&gt;@Shanthan118&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the reply from &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/437984"&gt;@frithjof_v&lt;/a&gt;&amp;nbsp;/ &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/612230"&gt;@AlexanderPowBI&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Transferring data from Lakehouse to Warehouse using a notebook can be a little difficult, I have a more convenient solution here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you're in the warehouse in Fabric, select the place I've highlighted.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vhuijieymsft_0-1721008178110.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1132073i6E6DC0CA0C5CE0BB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vhuijieymsft_0-1721008178110.png" alt="vhuijieymsft_0-1721008178110.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Select the Lakehouse you want to connect to.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vhuijieymsft_1-1721008178118.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1132074i0BD451801B01DD2F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vhuijieymsft_1-1721008178118.png" alt="vhuijieymsft_1-1721008178118.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now it's time to use your connected Lakehouse.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vhuijieymsft_2-1721008284107.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1132076i5AF4DCA4A25989A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vhuijieymsft_2-1721008284107.png" alt="vhuijieymsft_2-1721008284107.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vhuijieymsft_3-1721008284119.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1132077i67B6A158C21D38DB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vhuijieymsft_3-1721008284119.png" alt="vhuijieymsft_3-1721008284119.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have any other questions please feel free to contact me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 01:53:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4041328#M3013</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-15T01:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Can we Load Data from lakehouse to warehouse in Microsoft fabric using Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4041743#M3021</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;First Thanks for the solution,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;By the Solution you gave what i understood is I can connect&amp;nbsp;directly to the lakehouse that has the tables required to the warehouse and build aggregate tables on top of that warehouse right.&lt;BR /&gt;Is my understanding correct?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if we create aggregate tabel can this table accessible from Lakehouse END Point.&lt;BR /&gt;&lt;BR /&gt;By doing this how can we put schedule for data transferring to get data into aggregate tables and by doing this can i get data in to the warehouse from lakehouse like when there is a change in the data let us assume i have 20 records when i first connected and sometime later the record count is 40 now will these 40 records available in the warehouse table or not?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 11:11:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4041743#M3021</guid>
      <dc:creator>Shanthan118</dc:creator>
      <dc:date>2024-07-15T11:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: Can we Load Data from lakehouse to warehouse in Microsoft fabric using Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4041754#M3022</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/612230"&gt;@AlexanderPowBI&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks for the solution,&lt;BR /&gt;Can you please provide any script or steps to connnect to warehouse using the service principal and the SQL connection string from fabric using Pyodbc.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 06:19:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4041754#M3022</guid>
      <dc:creator>Shanthan118</dc:creator>
      <dc:date>2024-07-15T06:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Can we Load Data from lakehouse to warehouse in Microsoft fabric using Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4042127#M3024</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here is one example I have used.&lt;/P&gt;&lt;P&gt;First, create SP and make sure it has right permissions and workspace / warehouse access.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;below is a example code I have used to get access using a service principal (Followed this article: &lt;A href="https://debruyn.dev/2023/connect-to-fabric-lakehouses-warehouses-from-python-code/" target="_blank" rel="noopener"&gt;https://debruyn.dev/2023/connect-to-fabric-lakehouses-warehouses-from-python-code/). &lt;/A&gt;You can modify this and use it in fabric notebook &amp;amp; also a goood idea is to save and retrieve service principal secret from Key Vault.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//Alexander&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import logging
import pyodbc
from azure.identity import ClientSecretCredential
import struct
from itertools import chain, repeat
import os


def get_database_connection():
    try:
        tenant_id = os.getenv('TENANT_ID')
        client_id=os.getenv('CLIENT_ID') #Service principal
        client_secret=os.getenv('SP_SECRET') #Service principal key
        sql_endpoint = os.getenv('YOUR_SQL_ENDPOINT')
        database = os.getenv('DATABASE_NAME')

        credential = ClientSecretCredential(tenant_id,client_id,client_secret)
        token_object = credential.get_token("https://database.windows.net//.default") # Retrieve an access token valid to connect to SQL databases
        token_as_bytes = bytes(token_object.token, "UTF-8") # Convert the token to a UTF-8 byte string
        encoded_bytes = bytes(chain.from_iterable(zip(token_as_bytes, repeat(0)))) # Encode the bytes to a Windows byte string
        token_bytes =  struct.pack("&amp;lt;i", len(encoded_bytes)) + encoded_bytes # Package the token into a bytes object

        connection_string = f"Driver={{ODBC Driver 18 for SQL Server}};Server={sql_endpoint},1433;Database={database};Encrypt=Yes;TrustServerCertificate=No"
        attrs_before = {1256: token_bytes}  # Attribute pointing to SQL_COPT_SS_ACCESS_TOKEN to pass access token to the driver
       
        return pyodbc.connect(connection_string, attrs_before=attrs_before) #connection
    except Exception as e:
        logging.error(f"Error in get_database_connection: {str(e)}")
        raise&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 09:14:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4042127#M3024</guid>
      <dc:creator>AlexanderPowBI</dc:creator>
      <dc:date>2024-07-15T09:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can we Load Data from lakehouse to warehouse in Microsoft fabric using Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4053272#M3186</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/705825"&gt;@Shanthan118&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the reply from &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/612230"&gt;@AlexanderPowBI&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, you can build an aggregate table on top of the warehouse, but once created, the aggregate table belongs to the warehouse, so it is not visible in the SQL endpoint of the lakehouse.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To schedule data transfer and keep the aggregate table updated, you can use Dataflow Gen2 in Microsoft Fabric.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After selecting Lakehouse in Get Data, you can perform aggregation, set the destination to Warehouse, and set a scheduled refresh after publish, so that when your Lakehouse is updated, the data will be refreshed to aggregate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vhuijieymsft_0-1721632072804.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1136200iC392544CB2C7F707/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vhuijieymsft_0-1721632072804.png" alt="vhuijieymsft_0-1721632072804.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vhuijieymsft_1-1721632072812.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1136199i1676DDFBFB57FF67/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vhuijieymsft_1-1721632072812.png" alt="vhuijieymsft_1-1721632072812.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 07:09:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4053272#M3186</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-22T07:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Can we Load Data from lakehouse to warehouse in Microsoft fabric using Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4773125#M11166</link>
      <description>&lt;P&gt;Fabric supports loading data from lakehouse to warehouse using notebook by involking libraries.&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; com.microsoft.spark.fabric&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;from&lt;/SPAN&gt;&lt;SPAN&gt; com.microsoft.spark.fabric.Constants &lt;/SPAN&gt;&lt;SPAN&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; Constants&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;read data from lakehouse and write into warehouse.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;df&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;write&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;mode&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'append'&lt;/SPAN&gt;&lt;SPAN&gt;).synapsesql(&lt;/SPAN&gt;&lt;SPAN&gt;"warehouse.dbo.table1"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 23 Jul 2025 06:43:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Can-we-Load-Data-from-lakehouse-to-warehouse-in-Microsoft-fabric/m-p/4773125#M11166</guid>
      <dc:creator>BalajiL</dc:creator>
      <dc:date>2025-07-23T06:43:40Z</dc:date>
    </item>
  </channel>
</rss>

