<?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: Serverless views in Fabric in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4392924#M6878</link>
    <description>&lt;P&gt;&amp;nbsp;There are 2 options&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Easiest way is to create shortcut to Adls&lt;/P&gt;&lt;P&gt;Select New Shortcut → Azure Data Lake Storage Gen2 → Provide ADLS URL.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;And then query it like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SELECT * FROM Lakehouse.DemoShortcut.sales_data;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;other way is&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use the `COPY INTO` Command&lt;BR /&gt;The most direct method for bulk-loading data into a Fabric Warehouse or Lakehouse table:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;COPY INTO dbo.RetailSales&lt;BR /&gt;FROM 'https://&amp;lt;storage-account&amp;gt;.dfs.core.windows.net/&amp;lt;container&amp;gt;/sales/*.parquet'&lt;BR /&gt;WITH (&lt;BR /&gt;FILE_TYPE = 'PARQUET',&lt;BR /&gt;CREDENTIAL = (IDENTITY = 'Managed Identity')&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please accept this solution if this is helpful and give kudos&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Feb 2025 17:01:33 GMT</pubDate>
    <dc:creator>nilendraFabric</dc:creator>
    <dc:date>2025-02-03T17:01:33Z</dc:date>
    <item>
      <title>Serverless views in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4382915#M6553</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have loaded data from a source into the Data Lake (ADLS) using a Fabric pipeline. In Synapse, we used to query ADLS data using serverless views. Is there a similar way to utilize serverless views in Fabric?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Girish&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 17:05:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4382915#M6553</guid>
      <dc:creator>girishtharwani2</dc:creator>
      <dc:date>2025-01-27T17:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Serverless views in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4383003#M6558</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903432" data-lia-user-login="girishtharwani2" class="lia-mention lia-mention-user"&gt;girishtharwani2&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;You can use sql endpoint on &lt;SPAN&gt;OPENROWSET.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;this functionality will be available using&amp;nbsp;&lt;SPAN&gt;OPENROWSET&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Estimated release timeline: Q1 2025&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Release Type: Public preview&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Fabric DW enables the users to use the OPENROWSET function to read data from the files in the lake. A simple example of OPENROWSET function is:&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;SELECT&lt;/SPAN&gt; * 
&lt;SPAN class=""&gt;FROM&lt;/SPAN&gt; OPENROWSET ( &lt;SPAN class=""&gt;BULK&lt;/SPAN&gt; ‘&amp;lt;&lt;SPAN class=""&gt;file&lt;/SPAN&gt; &lt;SPAN class=""&gt;path&lt;/SPAN&gt;&amp;gt;’ ) 
&lt;SPAN class=""&gt;WITH&lt;/SPAN&gt; ( &amp;lt;&lt;SPAN class=""&gt;column&lt;/SPAN&gt; definition&amp;gt; ) &lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;The OPENROWSET function will read the content of the file(s) at the given &amp;lt;file path&amp;gt;and return the content of the files. Thi function enables easy browsing and previewing the files before ingestion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/release-plan/data-warehouse" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/release-plan/data-warehouse&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please see if this is helpful and try running &lt;SPAN&gt;OPENROWSET&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 18:07:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4383003#M6558</guid>
      <dc:creator>nilendraFabric</dc:creator>
      <dc:date>2025-01-27T18:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Serverless views in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4385797#M6645</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903432" data-lia-user-login="girishtharwani2" class="lia-mention lia-mention-user"&gt;girishtharwani2&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you for reaching out microsoft fabric community forum.&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;I wanted to check if you had the opportunity to review the information provided by &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="913195" data-lia-user-login="nilendraFabric" class="lia-mention lia-mention-user"&gt;nilendraFabric&lt;/a&gt;&amp;nbsp;. Please feel free to contact us if you have any further questions. If his response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 09:18:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4385797#M6645</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-29T09:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: Serverless views in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4392859#M6877</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="913195" data-lia-user-login="nilendraFabric" class="lia-mention lia-mention-user"&gt;nilendraFabric&lt;/a&gt;&amp;nbsp;The feature is yet to be released it seems, any other alternative that I can leverage ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2025 16:38:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4392859#M6877</guid>
      <dc:creator>girishtharwani2</dc:creator>
      <dc:date>2025-02-03T16:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Serverless views in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4392924#M6878</link>
      <description>&lt;P&gt;&amp;nbsp;There are 2 options&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Easiest way is to create shortcut to Adls&lt;/P&gt;&lt;P&gt;Select New Shortcut → Azure Data Lake Storage Gen2 → Provide ADLS URL.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;And then query it like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SELECT * FROM Lakehouse.DemoShortcut.sales_data;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;other way is&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use the `COPY INTO` Command&lt;BR /&gt;The most direct method for bulk-loading data into a Fabric Warehouse or Lakehouse table:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;COPY INTO dbo.RetailSales&lt;BR /&gt;FROM 'https://&amp;lt;storage-account&amp;gt;.dfs.core.windows.net/&amp;lt;container&amp;gt;/sales/*.parquet'&lt;BR /&gt;WITH (&lt;BR /&gt;FILE_TYPE = 'PARQUET',&lt;BR /&gt;CREDENTIAL = (IDENTITY = 'Managed Identity')&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please accept this solution if this is helpful and give kudos&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2025 17:01:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4392924#M6878</guid>
      <dc:creator>nilendraFabric</dc:creator>
      <dc:date>2025-02-03T17:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Serverless views in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4394548#M6923</link>
      <description>&lt;P&gt;Thanks for the inputs.&lt;/P&gt;&lt;P&gt;In serverless in Synapse, I have partitioned by the files based on date and I used to pick latest folder as date was handled dynamically.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I see I can manually create a table on ADLS but it will be one time, Is there a way I can achieve similar functionality in lakehouse as I am getting in serverless ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 14:33:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4394548#M6923</guid>
      <dc:creator>girishtharwani2</dc:creator>
      <dc:date>2025-02-04T14:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Serverless views in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4400582#M7059</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903432" data-lia-user-login="girishtharwani2" class="lia-mention lia-mention-user"&gt;girishtharwani2&lt;/a&gt;.,&lt;/P&gt;
&lt;P&gt;Thank you for your detailed explaination regarding your query.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;I would also take a moment to personally thank &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="913195" data-lia-user-login="nilendraFabric" class="lia-mention lia-mention-user"&gt;nilendraFabric&lt;/a&gt;&amp;nbsp;, for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Fabric Lakehouse, while there isn't a direct equivalent to Synapse Serverless SQL for dynamically querying partitioned data, you can achieve similar functionality using Lakehouse Shortcuts with Delta tables or dynamic queries with metadata tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are some approaches to consider:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;If your data in ADLS follows the Delta format, Fabric Lakehouse natively supports querying Delta tables, allowing you to use SQL to filter the latest partition dynamically.&lt;/LI&gt;
&lt;LI&gt;If you are working with Parquet files, you can use Fabric Notebook with PySpark to create a metadata table that dynamically tracks partition locations.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I hope this should resolve your issue, if you need any further assistance, feel free to reach out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;helps, then please give us Kudos and consider&amp;nbsp;Accept it as a solution&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Feb 2025 03:24:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Serverless-views-in-Fabric/m-p/4400582#M7059</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-09T03:24:14Z</dc:date>
    </item>
  </channel>
</rss>

