Lakshay
Databricks Employee
Databricks Employee

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:

  1. If the table definition exits, you can drop the previous table using Drop table command.
  2. If table definition do not exist, please remove the table directory using "rm -r" command

View solution in original post