<?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 UNDROP in Azure Databricks: Recover Dropped Tables Like a Pro in MVP Articles</title>
    <link>https://community.databricks.com/t5/mvp-articles/undrop-in-azure-databricks-recover-dropped-tables-like-a-pro/m-p/144497#M17</link>
    <description>&lt;P&gt;Accidentally dropping a table in production is every data engineer’s nightmare. One wrong command, one missing WHERE clause or worse, a rushed DROP TABLE and suddenly critical data is gone.&lt;/P&gt;&lt;P&gt;Thankfully, &lt;STRONG&gt;Azure Databricks with Unity Catalog&lt;/STRONG&gt; gives us a safety net: the &lt;STRONG&gt;UNDROP command&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;In this article, I’ll walk you through what UNDROP is, how it works, its limitations, and practical examples you can start using immediately.&lt;/P&gt;&lt;H2&gt;What Is the UNDROP Command in Azure Databricks?&lt;/H2&gt;&lt;P&gt;The &lt;STRONG&gt;UNDROP command&lt;/STRONG&gt; allows you to &lt;STRONG&gt;recover accidentally dropped tables or materialized views&lt;/STRONG&gt; that are managed by &lt;STRONG&gt;Unity Catalog&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;This feature is available in:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Databricks SQL&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Databricks Runtime 12.2 LTS and above&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Retention period:&lt;/STRONG&gt;&lt;BR /&gt;You have &lt;STRONG&gt;7 days&lt;/STRONG&gt; from the time a table or materialized view is dropped to recover it. After that, recovery is no longer possible.&lt;/P&gt;&lt;P&gt;UNDROP Syntax&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;UNDROP { MATERIALIZED VIEW | TABLE } 
{ relation_name | WITH ID relation_id }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can recover your dropped tables:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;By &lt;STRONG&gt;name&lt;/STRONG&gt; (most recent drop)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;By &lt;STRONG&gt;ID&lt;/STRONG&gt; (useful when multiple objects had the same name)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;Key Features of UNDROP&lt;/H2&gt;&lt;H3&gt;1. Recover by Name&lt;/H3&gt;&lt;P&gt;If a table or materialized view was dropped recently and no name conflict exists, recovery is straightforward.&lt;BR /&gt;To demonstrate, I've got &lt;STRONG&gt;sales_tbl_from_excel&amp;nbsp;&lt;/STRONG&gt;table in the &lt;STRONG&gt;learning_schema&lt;/STRONG&gt; of the &lt;STRONG&gt;learning&lt;/STRONG&gt; catalog that I am going to drop and undrop.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.PNG" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23109i8BD74D9476C67033/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.PNG" alt="1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;To drop the table, I executed the code below in the SQL Editor&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DROP TABLE sales_tbl_from_excel&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As seen in the screenshot below, the table is dropped from the&amp;nbsp;&lt;STRONG&gt;learning&amp;nbsp;&lt;/STRONG&gt;catalog.&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.PNG" style="width: 976px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23110i34905BFD9638D43C/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.PNG" alt="2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;To recover the table by name, I will leverage the&amp;nbsp;UNDROP SQL function. In the same SQL Editor, I executed the query below:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;UNDROP TABLE sales_tbl_from_excel&lt;/LI-CODE&gt;&lt;P&gt;As seen below, the table is back to the learning_schema of the learning catalog!&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.PNG" style="width: 928px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23111iA7658DFC51F0EADA/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.PNG" alt="3.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;H3&gt;2. Recover by ID (When Names Clash)&lt;/H3&gt;&lt;P&gt;If a table was dropped, recreated, and dropped again or if multiple objects shared the same name you can recover a specific version using its &lt;STRONG&gt;relation ID&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;In the demonstration below, I created a new table named&amp;nbsp;&lt;STRONG&gt;outages&amp;nbsp;&lt;/STRONG&gt;in the learning schema as seen below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4.PNG" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23112i1BF585FCD1518E70/image-size/large?v=v2&amp;amp;px=999" role="button" title="4.PNG" alt="4.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I will drop the table and use the query below to list all dropped table within the learning schema&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SHOW TABLES DROPPED IN learning_schema;&lt;/LI-CODE&gt;&lt;P&gt;The show tables dropped is handy to trace tables dropped from a schema, useful for recovery purposes.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="5.PNG" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23113i72CA760C17FD6863/image-size/large?v=v2&amp;amp;px=999" role="button" title="5.PNG" alt="5.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;To recover the &lt;STRONG&gt;outages&amp;nbsp;&lt;/STRONG&gt;table using the tableId visible in the Show Tables Dropped Output and also in the URL, I executed the query below:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;UNDROP TABLE WITH ID '77f58c5c-23c4-420b-9b07-dd155dd52cd6';&lt;/LI-CODE&gt;&lt;P&gt;After refreshing the catalog, I can see the table is recovered successfully using tableId as seen below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="6.PNG" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23114i0420FDF27B95F3A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="6.PNG" alt="6.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is especially useful in CI/CD pipelines or shared environments.&lt;/P&gt;&lt;H2&gt;Required Permissions&lt;/H2&gt;&lt;P&gt;To execute the UNDROP command, you must have &lt;STRONG&gt;one of the following&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Ownership of:&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;The table/materialized view&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;The schema&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;The catalog&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;The metastore&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;OR&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Permissions such as:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;CREATE TABLE&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;USE SCHEMA&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;USE CATALOG&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;External Tables&lt;/H3&gt;&lt;P&gt;For &lt;STRONG&gt;external tables&lt;/STRONG&gt;, additional permission is required:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;CREATE EXTERNAL TABLE on the external location&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;Limitations You Should Know&lt;/H2&gt;&lt;P&gt;While UNDROP is powerful, it’s not magic.&lt;/P&gt;&lt;H3&gt;Materialized View Limitations&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Only &lt;STRONG&gt;materialized views created via ETL pipelines&lt;/STRONG&gt; can be restored&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Views created directly in &lt;STRONG&gt;Databricks SQL cannot be recovered&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;Streaming Tables can only be restored if the &lt;STRONG&gt;backing pipeline still exists&lt;/STRONG&gt;&lt;/H3&gt;&lt;H3&gt;Time Constraint:&amp;nbsp;&lt;SPAN&gt;Recovery is only possible within &lt;/SPAN&gt;&lt;STRONG&gt;7 days&lt;/STRONG&gt;&lt;/H3&gt;</description>
    <pubDate>Mon, 19 Jan 2026 23:56:28 GMT</pubDate>
    <dc:creator>Abiola-David</dc:creator>
    <dc:date>2026-01-19T23:56:28Z</dc:date>
    <item>
      <title>UNDROP in Azure Databricks: Recover Dropped Tables Like a Pro</title>
      <link>https://community.databricks.com/t5/mvp-articles/undrop-in-azure-databricks-recover-dropped-tables-like-a-pro/m-p/144497#M17</link>
      <description>&lt;P&gt;Accidentally dropping a table in production is every data engineer’s nightmare. One wrong command, one missing WHERE clause or worse, a rushed DROP TABLE and suddenly critical data is gone.&lt;/P&gt;&lt;P&gt;Thankfully, &lt;STRONG&gt;Azure Databricks with Unity Catalog&lt;/STRONG&gt; gives us a safety net: the &lt;STRONG&gt;UNDROP command&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;In this article, I’ll walk you through what UNDROP is, how it works, its limitations, and practical examples you can start using immediately.&lt;/P&gt;&lt;H2&gt;What Is the UNDROP Command in Azure Databricks?&lt;/H2&gt;&lt;P&gt;The &lt;STRONG&gt;UNDROP command&lt;/STRONG&gt; allows you to &lt;STRONG&gt;recover accidentally dropped tables or materialized views&lt;/STRONG&gt; that are managed by &lt;STRONG&gt;Unity Catalog&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;This feature is available in:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Databricks SQL&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Databricks Runtime 12.2 LTS and above&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Retention period:&lt;/STRONG&gt;&lt;BR /&gt;You have &lt;STRONG&gt;7 days&lt;/STRONG&gt; from the time a table or materialized view is dropped to recover it. After that, recovery is no longer possible.&lt;/P&gt;&lt;P&gt;UNDROP Syntax&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;UNDROP { MATERIALIZED VIEW | TABLE } 
{ relation_name | WITH ID relation_id }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can recover your dropped tables:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;By &lt;STRONG&gt;name&lt;/STRONG&gt; (most recent drop)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;By &lt;STRONG&gt;ID&lt;/STRONG&gt; (useful when multiple objects had the same name)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;Key Features of UNDROP&lt;/H2&gt;&lt;H3&gt;1. Recover by Name&lt;/H3&gt;&lt;P&gt;If a table or materialized view was dropped recently and no name conflict exists, recovery is straightforward.&lt;BR /&gt;To demonstrate, I've got &lt;STRONG&gt;sales_tbl_from_excel&amp;nbsp;&lt;/STRONG&gt;table in the &lt;STRONG&gt;learning_schema&lt;/STRONG&gt; of the &lt;STRONG&gt;learning&lt;/STRONG&gt; catalog that I am going to drop and undrop.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.PNG" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23109i8BD74D9476C67033/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.PNG" alt="1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;To drop the table, I executed the code below in the SQL Editor&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DROP TABLE sales_tbl_from_excel&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As seen in the screenshot below, the table is dropped from the&amp;nbsp;&lt;STRONG&gt;learning&amp;nbsp;&lt;/STRONG&gt;catalog.&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.PNG" style="width: 976px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23110i34905BFD9638D43C/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.PNG" alt="2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;To recover the table by name, I will leverage the&amp;nbsp;UNDROP SQL function. In the same SQL Editor, I executed the query below:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;UNDROP TABLE sales_tbl_from_excel&lt;/LI-CODE&gt;&lt;P&gt;As seen below, the table is back to the learning_schema of the learning catalog!&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.PNG" style="width: 928px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23111iA7658DFC51F0EADA/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.PNG" alt="3.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;H3&gt;2. Recover by ID (When Names Clash)&lt;/H3&gt;&lt;P&gt;If a table was dropped, recreated, and dropped again or if multiple objects shared the same name you can recover a specific version using its &lt;STRONG&gt;relation ID&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;In the demonstration below, I created a new table named&amp;nbsp;&lt;STRONG&gt;outages&amp;nbsp;&lt;/STRONG&gt;in the learning schema as seen below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4.PNG" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23112i1BF585FCD1518E70/image-size/large?v=v2&amp;amp;px=999" role="button" title="4.PNG" alt="4.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I will drop the table and use the query below to list all dropped table within the learning schema&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SHOW TABLES DROPPED IN learning_schema;&lt;/LI-CODE&gt;&lt;P&gt;The show tables dropped is handy to trace tables dropped from a schema, useful for recovery purposes.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="5.PNG" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23113i72CA760C17FD6863/image-size/large?v=v2&amp;amp;px=999" role="button" title="5.PNG" alt="5.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;To recover the &lt;STRONG&gt;outages&amp;nbsp;&lt;/STRONG&gt;table using the tableId visible in the Show Tables Dropped Output and also in the URL, I executed the query below:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;UNDROP TABLE WITH ID '77f58c5c-23c4-420b-9b07-dd155dd52cd6';&lt;/LI-CODE&gt;&lt;P&gt;After refreshing the catalog, I can see the table is recovered successfully using tableId as seen below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="6.PNG" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/23114i0420FDF27B95F3A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="6.PNG" alt="6.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is especially useful in CI/CD pipelines or shared environments.&lt;/P&gt;&lt;H2&gt;Required Permissions&lt;/H2&gt;&lt;P&gt;To execute the UNDROP command, you must have &lt;STRONG&gt;one of the following&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Ownership of:&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;The table/materialized view&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;The schema&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;The catalog&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;The metastore&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;OR&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Permissions such as:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;CREATE TABLE&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;USE SCHEMA&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;USE CATALOG&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;External Tables&lt;/H3&gt;&lt;P&gt;For &lt;STRONG&gt;external tables&lt;/STRONG&gt;, additional permission is required:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;CREATE EXTERNAL TABLE on the external location&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;Limitations You Should Know&lt;/H2&gt;&lt;P&gt;While UNDROP is powerful, it’s not magic.&lt;/P&gt;&lt;H3&gt;Materialized View Limitations&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Only &lt;STRONG&gt;materialized views created via ETL pipelines&lt;/STRONG&gt; can be restored&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Views created directly in &lt;STRONG&gt;Databricks SQL cannot be recovered&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;Streaming Tables can only be restored if the &lt;STRONG&gt;backing pipeline still exists&lt;/STRONG&gt;&lt;/H3&gt;&lt;H3&gt;Time Constraint:&amp;nbsp;&lt;SPAN&gt;Recovery is only possible within &lt;/SPAN&gt;&lt;STRONG&gt;7 days&lt;/STRONG&gt;&lt;/H3&gt;</description>
      <pubDate>Mon, 19 Jan 2026 23:56:28 GMT</pubDate>
      <guid>https://community.databricks.com/t5/mvp-articles/undrop-in-azure-databricks-recover-dropped-tables-like-a-pro/m-p/144497#M17</guid>
      <dc:creator>Abiola-David</dc:creator>
      <dc:date>2026-01-19T23:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: UNDROP in Azure Databricks: Recover Dropped Tables Like a Pro</title>
      <link>https://community.databricks.com/t5/mvp-articles/undrop-in-azure-databricks-recover-dropped-tables-like-a-pro/m-p/144559#M18</link>
      <description>&lt;P class="p1"&gt;Excellent explanation of UNDROP in Unity Catalog. The examples and callouts around retention windows and edge cases make this very actionable. Thanks for putting this together.&lt;/P&gt;
&lt;P class="p1"&gt;Cheers, Louis.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 12:09:38 GMT</pubDate>
      <guid>https://community.databricks.com/t5/mvp-articles/undrop-in-azure-databricks-recover-dropped-tables-like-a-pro/m-p/144559#M18</guid>
      <dc:creator>Louis_Frolio</dc:creator>
      <dc:date>2026-01-20T12:09:38Z</dc:date>
    </item>
  </channel>
</rss>

