Forum Discussion

lolsen1601's avatar
lolsen1601
Regular Visitor
1 year ago
Solved

undefined

I deleted the table in the lakehouse that is connected to the table in the data warehouse. When I go to drop the table in the data warehouse It says the table does not exsist. The issue is I believe ...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi lolsen1601,

    Thanks for reaching out to the Microsoft fabric community forum.

    From what you've described, it sounds like the table in your Lakehouse was deleted, but the metadata or link to that table still exists on the Data Warehouse side. When that happens, the system might still "remember" the table, even though the actual data or structure is gone which could explain why you're seeing issues or inconsistencies when trying to drop it.

    Here are a few things you can try to solve your issue :

    * Check if the table still appears in the Data Warehouse metadata catalog. You can run a query like "SHOW TABLES" or check "INFORMATION_SCHEMA.TABLES" to confirm whether the table is still listed. If it’s there, you may need to explicitly drop it using "DROP TABLE IF EXISTS [table_name]".

    * If you used a shortcut to connect the Lakehouse table to the Data Warehouse, make sure that shortcut has also been removed from the Lakehouse. Sometimes the shortcut metadata lingers even after the table itself is deleted.

    * If the table doesn’t appear anywhere but is still causing issues, there may be dependent views, pipelines, or reports referencing it. You may want to review any downstream objects that could still be calling this table.

    * Refreshing or syncing the schema can also help clean up any stale references, especially if the metadata hasn’t updated automatically.

    If you've already tried all of the above and are still hitting a wall, feel free to share any error messages you're seeing or the steps you've taken so far

     

    If I misunderstand your needs or you still have problems on it, please feel free to let us know.  

    Best Regards,
    Hammad.
    Community Support Team

     

    If this post helps then please mark it as a solution, so that other members find it more quickly.

    Thank you.