<?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: No Longer Able to Create DeltaTables in ADLS Gen 2 in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132260#M49411</link>
    <description>&lt;P&gt;I should also mention that not only do I get the error:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DeltaIllegalStateException: The protocol of your Delta table could not be recovered while Reconstructing version: 0. Did you manually delete files in the _delta_log directory?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The table folder that is created looks like the following:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Carlton_1-1758124038734.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20044i4E63B555B461E829/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Carlton_1-1758124038734.png" alt="Carlton_1-1758124038734.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 17 Sep 2025 15:47:37 GMT</pubDate>
    <dc:creator>Carlton</dc:creator>
    <dc:date>2025-09-17T15:47:37Z</dc:date>
    <item>
      <title>No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132236#M49396</link>
      <description>&lt;P&gt;Hi Community,&lt;/P&gt;&lt;P&gt;Up until recently I was happily deleting deltaTables in ADLS Gen with their associated _delta_log table, and subsequently recreating the same table with a new _delta_log table.&lt;/P&gt;&lt;P&gt;Now, after deleting a table with its associated _delta_log table when I attempt to create a new table with the same name I get the error:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DeltaIllegalStateException: The protocol of your Delta table could not be recovered while Reconstructing version: 0. Did you manually delete files in the _delta_log directory?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Has Databricks changed something that prevents people from recreating new deltaTables with the same table name?&lt;/P&gt;&lt;P&gt;Can someone please let me know how to resolve this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 13:45:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132236#M49396</guid>
      <dc:creator>Carlton</dc:creator>
      <dc:date>2025-09-17T13:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132238#M49397</link>
      <description>&lt;P&gt;1. If you purposely removed _delta_log/ but kept data files.&lt;BR /&gt;Delete any remaining _delta_log/ completely, then convert the Parquet directory back to Delta to create a fresh log:&lt;/P&gt;&lt;P&gt;-- path has only Parquet data now&lt;BR /&gt;CONVERT TO DELTA parquet.`abfss://&amp;lt;container&amp;gt;@&amp;lt;account&amp;gt;.dfs.core.windows.net/&amp;lt;path&amp;gt;/`&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;2. Ensure the path is 100% empty (no hidden _delta_log):&lt;/P&gt;&lt;P&gt;# in a Databricks notebook&lt;BR /&gt;display(dbutils.fs.ls("abfss://&amp;lt;container&amp;gt;@&amp;lt;account&amp;gt;.dfs.core.windows.net/&amp;lt;path&amp;gt;"))&lt;BR /&gt;display(dbutils.fs.ls("abfss://&amp;lt;container&amp;gt;@&amp;lt;account&amp;gt;.dfs.core.windows.net/&amp;lt;path&amp;gt;/_delta_log"))&lt;/P&gt;&lt;P&gt;If anything remains, remove the entire base folder&lt;BR /&gt;dbutils.fs.rm("abfss://&amp;lt;container&amp;gt;@&amp;lt;account&amp;gt;.dfs.core.windows.net/&amp;lt;path&amp;gt;", recurse=True)&lt;/P&gt;&lt;P&gt;Then recreate the table&lt;/P&gt;&lt;P&gt;CREATE OR REPLACE TABLE catalog.schema.table&lt;BR /&gt;USING DELTA&lt;BR /&gt;LOCATION 'abfss://&amp;lt;container&amp;gt;@&amp;lt;account&amp;gt;.dfs.core.windows.net/&amp;lt;path&amp;gt;'&lt;BR /&gt;AS SELECT * FROM some_source;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 14:06:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132238#M49397</guid>
      <dc:creator>nayan_wylde</dc:creator>
      <dc:date>2025-09-17T14:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132239#M49398</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/82214"&gt;@Carlton&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;This could happen for following reasons:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Manually remove underlying files from the Delta log.&lt;/LI&gt;&lt;LI&gt;Run&amp;nbsp;rm commands or other non-Delta operations that remove files from the Delta log.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Drop and immediately create a table on top of the same location.&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;When files are manually removed or not removed correctly, the Delta log versions become non-contiguous.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;You can try to follow this guide to resolve this issue:&lt;/P&gt;&lt;P&gt;&lt;A href="https://kb.databricks.com/delta/dropping-and-recreating-delta-tables-results-in-a-deltaversionsnotcontiguousexception-error" target="_blank" rel="noopener"&gt;Dropping and recreating Delta tables results in a DeltaVersionsNotContiguousException error - Databricks&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Also, the way you were doing in (like manually deleting files) is not recommended by Databricks.&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;Instead of dropping and recreating Delta tables, the official recommendation is to use CREATE OR REPLACE command.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 14:15:37 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132239#M49398</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-17T14:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132243#M49400</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/82214"&gt;@Carlton&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Good Day!&lt;/P&gt;
&lt;P&gt;What is the DBR version? How are you creating the table? Did you drop the table and recreate it using SQL?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 14:27:26 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132243#M49400</guid>
      <dc:creator>K_Anudeep</dc:creator>
      <dc:date>2025-09-17T14:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132244#M49401</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;I really appreciate you getting in touch, this has been driving me crazy.&lt;/P&gt;&lt;P&gt;I delete the entire folder from ADLS. Admittedly, I didn't remove the folder from within Databricks using&amp;nbsp;&lt;SPAN&gt;dbutils.fs.rm.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If you take a look at my image, I want to remove the &lt;STRONG&gt;'Country'.&amp;nbsp;&lt;/STRONG&gt;So I would delete the &lt;STRONG&gt;Country&lt;/STRONG&gt; folder and all sub-folders e.g. folder&amp;nbsp;&lt;STRONG&gt;1&amp;nbsp;&lt;/STRONG&gt; and then &lt;STRONG&gt;_delta_log&lt;/STRONG&gt; folder. But when attempt to create another&amp;nbsp;&lt;STRONG&gt;Country&amp;nbsp;&lt;/STRONG&gt; deltaTable I get the error.&lt;/P&gt;&lt;P&gt;Are you suggesting that I should delete from within databricks?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 14:28:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132244#M49401</guid>
      <dc:creator>Carlton</dc:creator>
      <dc:date>2025-09-17T14:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132246#M49402</link>
      <description>&lt;P&gt;Sorry I forgot to add the image:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Carlton_0-1758119386566.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20040iA6D25382DF3EF0EC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Carlton_0-1758119386566.png" alt="Carlton_0-1758119386566.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 14:30:00 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132246#M49402</guid>
      <dc:creator>Carlton</dc:creator>
      <dc:date>2025-09-17T14:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132247#M49403</link>
      <description>&lt;P data-start="0" data-end="274"&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/82214"&gt;@Carlton&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P data-start="0" data-end="274"&gt;&lt;STRONG data-start="14" data-end="115"&gt;Yes—delete from inside Databricks (and drop the table) when you plan to reuse the same path/name.&lt;/STRONG&gt; External deletes can leave you with a half-cleaned path or stale state, which leads to the “protocol could not be recovered (version: 0)” error.&lt;/P&gt;
&lt;P data-start="276" data-end="335"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 14:33:15 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132247#M49403</guid>
      <dc:creator>K_Anudeep</dc:creator>
      <dc:date>2025-09-17T14:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132251#M49405</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A class="" href="https://community.databricks.com/t5/user/viewprofilepage/user-id/79394" target="_self"&gt;&lt;SPAN class=""&gt;nayan_wylde&lt;/SPAN&gt;&lt;/A&gt;, I'm getting the following error when I try to list the files in account&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Carlton_0-1758120870762.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20041iACFBB1B941895928/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Carlton_0-1758120870762.png" alt="Carlton_0-1758120870762.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 14:56:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132251#M49405</guid>
      <dc:creator>Carlton</dc:creator>
      <dc:date>2025-09-17T14:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132252#M49406</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Delete all folders in ADLS related to a country and also execute DROP TABLE command on the catalog where this table resides.&lt;/P&gt;&lt;P&gt;Probably catalog still stores metadata about this table and thinks it exists.&lt;/P&gt;&lt;P&gt;Then try to create table - but only if you have performed above steps&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 15:02:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132252#M49406</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-17T15:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132255#M49408</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A class="" href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502" target="_self"&gt;&lt;SPAN class=""&gt;szymon_dybczak&lt;/SPAN&gt;&lt;/A&gt;, if you take a look at the image, are you suggesting I delete the folder BASE? That folder is the equivalent to our SILVER layer. Deleting that folder would be devastating to our business. I deleted from&amp;nbsp;&lt;STRONG&gt;DATA&amp;nbsp;&lt;/STRONG&gt;and all sub-folders below&amp;nbsp;&lt;STRONG&gt;DATA&amp;nbsp;&lt;/STRONG&gt;including Country. Shouldn't that be enough?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 15:08:56 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132255#M49408</guid>
      <dc:creator>Carlton</dc:creator>
      <dc:date>2025-09-17T15:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132256#M49409</link>
      <description>&lt;P&gt;Hi, sorry. I should be more specific. You should delete country folder along with all subfolders ( basically the folder in which the data for the table you want to delete resides).&lt;/P&gt;&lt;P&gt;After that, execute DROP TABLE command on the catalog where the table you wanted to delete was registered.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 15:26:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132256#M49409</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-17T15:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132258#M49410</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A class="" href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502" target="_self"&gt;&lt;SPAN class=""&gt;szymon_dybczak&lt;/SPAN&gt;&lt;/A&gt;, no worries, I'm just grateful that you're helping me out. I did what you suggested along with deleting the table from the catalog, see image but I'm still getting the same error&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Carlton_0-1758123155442.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20043i3962B435468D2027/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Carlton_0-1758123155442.png" alt="Carlton_0-1758123155442.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I should mention that I'm getting the following error when I try list files&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;display(dbutils.fs.ls(&lt;/SPAN&gt;&lt;SPAN&gt;"abfss://root@xxxxxx.dfs.core.windows.net/"&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;fs.azure.account.keyInvalid configuration value detected for fs.azure.account.key&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 15:34:12 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132258#M49410</guid>
      <dc:creator>Carlton</dc:creator>
      <dc:date>2025-09-17T15:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132260#M49411</link>
      <description>&lt;P&gt;I should also mention that not only do I get the error:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DeltaIllegalStateException: The protocol of your Delta table could not be recovered while Reconstructing version: 0. Did you manually delete files in the _delta_log directory?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The table folder that is created looks like the following:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Carlton_1-1758124038734.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20044i4E63B555B461E829/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Carlton_1-1758124038734.png" alt="Carlton_1-1758124038734.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 15:47:37 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132260#M49411</guid>
      <dc:creator>Carlton</dc:creator>
      <dc:date>2025-09-17T15:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132261#M49412</link>
      <description>&lt;P&gt;I should also mentioned I am using the following code to create the deltaTable which I have been using for years&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;STRONG&gt;deltadf = DeltaTable.forName(spark,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;f"{stageName}{regName}")&lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 17 Sep 2025 15:53:40 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132261#M49412</guid>
      <dc:creator>Carlton</dc:creator>
      <dc:date>2025-09-17T15:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132262#M49413</link>
      <description>&lt;P&gt;Thanks for additional details. Could you also tell us if you're using Hive metastore or Unity Catalog?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are using Hive then how you have configured storage?&lt;/P&gt;&lt;P&gt;Also, do you see something useful in driver logs?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 16:00:24 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132262#M49413</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-17T16:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132265#M49415</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;&amp;nbsp;at the moment, I'm using Databricks Community Edition, however I get the same issue when I'm using a premium edition of Databricks&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Carlton_0-1758125389872.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20045i7A073C076B787ED2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Carlton_0-1758125389872.png" alt="Carlton_0-1758125389872.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 16:10:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132265#M49415</guid>
      <dc:creator>Carlton</dc:creator>
      <dc:date>2025-09-17T16:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132268#M49417</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/82214"&gt;@Carlton&lt;/a&gt;&amp;nbsp;This error means you are not passing the client id and client secret in the spark config that will authenticate against the storage or the client secret expired.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 16:33:12 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132268#M49417</guid>
      <dc:creator>nayan_wylde</dc:creator>
      <dc:date>2025-09-17T16:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132272#M49420</link>
      <description>&lt;P&gt;Any more thoughts on this issue guys&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 16:45:45 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132272#M49420</guid>
      <dc:creator>Carlton</dc:creator>
      <dc:date>2025-09-17T16:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132303#M49430</link>
      <description>&lt;P&gt;So, since you're using databricks community edition I'm assuming that you're dealing with Hive metastore.&lt;BR /&gt;You can try following:&lt;/P&gt;&lt;P&gt;1. Go to Settings&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="szymon_dybczak_0-1758130627296.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20057i7E8454503D7D8DD5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="szymon_dybczak_0-1758130627296.png" alt="szymon_dybczak_0-1758130627296.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;2. Now go to Advance (2) and turn on DBFS File Browser (3)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="szymon_dybczak_1-1758130708447.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20058i77BC4CBF834D0D01/image-size/medium?v=v2&amp;amp;px=400" role="button" title="szymon_dybczak_1-1758130708447.png" alt="szymon_dybczak_1-1758130708447.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Now, click Catalog (4), then DBFS(5) and go to users -&amp;gt; hive -&amp;gt; warehouse and check if you can find the table that you want to delete (Country).&lt;/P&gt;&lt;P&gt;4. If the table is there, copy path to the table (just like I did for flattened_source table in screen below)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="szymon_dybczak_3-1758131344216.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20060i555F5E66CFA0D961/image-size/medium?v=v2&amp;amp;px=400" role="button" title="szymon_dybczak_3-1758131344216.png" alt="szymon_dybczak_3-1758131344216.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;5. Then remove all files using dbutils.fm.rm&lt;/P&gt;&lt;LI-CODE lang="python"&gt;dbutils.fs.rm(dir="dbfs:/user/hive/warehouse/invoices_bz", recurse=True)&lt;/LI-CODE&gt;&lt;P&gt;6. Double check that there are no files in your ADLS related to Country table&lt;/P&gt;&lt;P&gt;7. Try to recreate it.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 17:50:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132303#M49430</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-17T17:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: No Longer Able to Create DeltaTables in ADLS Gen 2</title>
      <link>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132307#M49432</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;&amp;nbsp;, you must have a special version of Databricks Community Edition as I don't have those options after I select settings&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="Carlton_1-1758132216163.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20063i9DE6313B51BB6005/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Carlton_1-1758132216163.png" alt="Carlton_1-1758132216163.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Shall I try from my premium paid for version of Databricks?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 18:03:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/no-longer-able-to-create-deltatables-in-adls-gen-2/m-p/132307#M49432</guid>
      <dc:creator>Carlton</dc:creator>
      <dc:date>2025-09-17T18:03:54Z</dc:date>
    </item>
  </channel>
</rss>

