Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2023 09:16 AM
Hi @Chris Konsur , This issue generally happens when using "DROP TABLE" and "CREATE TABLE" commands. Databricks recommends to use "CREATE or REPLACE" commands to overwrite a delta table rather than dropping and recreating the table.
Also, to fix the issue you need to delete the table directory. You can try below methods for the same:
- If the table definition exits, you can drop the previous table using Drop table command.
- If table definition do not exist, please remove the table directory using "rm -r" command