<?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: SHOW PARTITIONS on OneLake-based Delta tables in Fabric in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/SHOW-PARTITIONS-on-OneLake-based-Delta-tables-in-Fabric/m-p/4733013#M10177</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/899494"&gt;@spark123&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please "&lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt;"&amp;nbsp;so other members can easily find it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Best Regards,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Lakshmi Narayana&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 16 Jun 2025 07:24:45 GMT</pubDate>
    <dc:creator>v-lgarikapat</dc:creator>
    <dc:date>2025-06-16T07:24:45Z</dc:date>
    <item>
      <title>SHOW PARTITIONS on OneLake-based Delta tables in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/SHOW-PARTITIONS-on-OneLake-based-Delta-tables-in-Fabric/m-p/4727241#M10057</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I am trying to use&amp;nbsp;SHOW PARTITIONS on a partitionned delta table but i am facing this error, i also tried to use the deltalake library but it doesnt work&lt;BR /&gt;&lt;BR /&gt;did anybody face this error ?&lt;BR /&gt;&lt;BR /&gt;PS : [THE TABLE IS PARTITONNNED]&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="image.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1275253iE49765C65F1BF8B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;BR /&gt;[INVALID_PARTITION_OPERATION.PARTITION_MANAGEMENT_IS_UNSUPPORTED] The partition command is invalid. Table spark_catalog.chimcob***fe9ln6s31cdi*****************6pavcpq70nr1d******4li64ro.tbl_sales_****_bronze does not support partition management.; line 1 pos 16; ShowPartitions [partition#726] +- ResolvedTable org.apache.spark.sql.delta.catalog.DeltaCatalog@64a60cb8, chimcob&amp;nbsp;Time: Wed Jan 21 01:30:30 UTC 1970 Last Access: UNKNOWN Created By: Spark Type: MANAGED Provider: delta Comment: Delta table auto-discovered from Onelake&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 12:49:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/SHOW-PARTITIONS-on-OneLake-based-Delta-tables-in-Fabric/m-p/4727241#M10057</guid>
      <dc:creator>spark123</dc:creator>
      <dc:date>2025-06-10T12:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: SHOW PARTITIONS on OneLake-based Delta tables in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/SHOW-PARTITIONS-on-OneLake-based-Delta-tables-in-Fabric/m-p/4728387#M10074</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/899494"&gt;@spark123&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to the Microsoft Fabric Community Forum.&lt;/P&gt;
&lt;P&gt;Based on the error screenshot you provided&lt;/P&gt;
&lt;P&gt;It looks like Delta tables in Microsoft OneLake/Fabric do not support explicit partition management using SHOW PARTITIONS. Unlike traditional Hive-style partitioned tables, Delta Lake manages partitions automatically, which means direct partition manipulation commands aren’t available.&lt;/P&gt;
&lt;P&gt;Workarounds&lt;/P&gt;
&lt;P&gt;Using DeltaLake Python API&lt;/P&gt;
&lt;P&gt;from delta.tables import DeltaTable&lt;/P&gt;
&lt;P&gt;dt = DeltaTable.forName(spark, "your_table")&lt;/P&gt;
&lt;P&gt;dt.detail().show()&lt;/P&gt;
&lt;P&gt;DESCRIBE DETAIL your_table;&lt;/P&gt;
&lt;P&gt;Use SQL to get distinct partition values:&lt;/P&gt;
&lt;P&gt;SELECT DISTINCT partition_column_name FROM LakehouseCatalogName.schemaName.tableName;&lt;/P&gt;
&lt;P&gt;SELECT DISTINCT partition_column FROM your_table;&lt;/P&gt;
&lt;P&gt;I have included resolved community threads and official learning resources that may be helpful to you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/sql-analytics-endpoint-performance" target="_blank" rel="noopener"&gt;SQL Analytics Endpoint Performance Considerations - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/lakehouse-and-delta-tables" target="_blank" rel="noopener"&gt;Lakehouse and Delta tables - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Data-Engineering/Add-partition-to-existing-Delta-Table/m-p/3427068/highlight/true" target="_blank" rel="noopener"&gt;Solved: Add partition to existing Delta Table - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Data-Engineering/Seeking-partition-strategy/m-p/4094596#M3555" target="_blank" rel="noopener"&gt;Solved: Re: Seeking partition strategy - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Best Regards,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Lakshmi Narayana&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 09:37:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/SHOW-PARTITIONS-on-OneLake-based-Delta-tables-in-Fabric/m-p/4728387#M10074</guid>
      <dc:creator>v-lgarikapat</dc:creator>
      <dc:date>2025-06-11T09:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: SHOW PARTITIONS on OneLake-based Delta tables in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/SHOW-PARTITIONS-on-OneLake-based-Delta-tables-in-Fabric/m-p/4733013#M10177</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/899494"&gt;@spark123&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please "&lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt;"&amp;nbsp;so other members can easily find it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Best Regards,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Lakshmi Narayana&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 07:24:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/SHOW-PARTITIONS-on-OneLake-based-Delta-tables-in-Fabric/m-p/4733013#M10177</guid>
      <dc:creator>v-lgarikapat</dc:creator>
      <dc:date>2025-06-16T07:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: SHOW PARTITIONS on OneLake-based Delta tables in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/SHOW-PARTITIONS-on-OneLake-based-Delta-tables-in-Fabric/m-p/4737127#M10277</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/899494"&gt;@spark123&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;If your issue has been resolved, please consider marking the most helpful reply as the &lt;STRONG&gt;accepted solution&lt;/STRONG&gt;. This helps other community members who may encounter the same issue to find answers more efficiently.&lt;/P&gt;
&lt;P&gt;If you're still facing challenges, feel free to let us know we’ll be glad to assist you further.&lt;/P&gt;
&lt;P&gt;Looking forward to your response.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Best regards,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LakshmiNarayana.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 08:06:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/SHOW-PARTITIONS-on-OneLake-based-Delta-tables-in-Fabric/m-p/4737127#M10277</guid>
      <dc:creator>v-lgarikapat</dc:creator>
      <dc:date>2025-06-19T08:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: SHOW PARTITIONS on OneLake-based Delta tables in Fabric</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/SHOW-PARTITIONS-on-OneLake-based-Delta-tables-in-Fabric/m-p/4740449#M10356</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/899494"&gt;@spark123&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;As we haven't heard back from you, we are closing this thread. If you are still experiencing the issue, please feel free to create a new thread we’ll be happy to assist you further.&lt;/P&gt;
&lt;P&gt;Thank you for your patience and support.&lt;/P&gt;
&lt;P&gt;If you found our response helpful, please mark it as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Accepted Solution&lt;/STRONG&gt;&amp;nbsp;so others with similar queries can find it easily.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Best Regards,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Lakshmi Narayana&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 09:30:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/SHOW-PARTITIONS-on-OneLake-based-Delta-tables-in-Fabric/m-p/4740449#M10356</guid>
      <dc:creator>v-lgarikapat</dc:creator>
      <dc:date>2025-06-23T09:30:59Z</dc:date>
    </item>
  </channel>
</rss>

