Refresh streaming table error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2026 04:46 AM
Refresh streaming table sql succeeds for the first time.
The subsequent refresh statements fails with TABLE_OR_VIEW_NOT_FOUND error.
The streaming table is still available in the same catalog and schema
- Labels:
-
Delta Lake
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2026 09:02 AM
Hi @Anandhi-Sekaran,
I would need more context to help you. Please share the exact SQL you’re using, with any catalog, schema, or table names anonymised if necessary, so I can identify what might be affecting you.
As a starter, just make sure you’re using all three parts (Catalog, Schema & Table) every time rather than just using the table name alone.
If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.
Ashwin | Delivery Solution Architect @ Databricks
Helping you build and scale the Data Intelligence Platform.
***Opinions are my own***
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2026 12:42 AM
Hi
Here is the query i use
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2026 02:04 AM
Hi @Anandhi-Sekaran,
Thanks for clarifying. I'm wondering if another script, pipeline or a different user dropped the table after you created it. or, maybe even created a normal table replacing the existing streaming table? Here are some options for you to debug.
Can you run the below and see if it returns anything? If it does, is it showing the type as streaming?
DESCRIBE TABLE EXTENDED `cxxxxx`.`tgt_dev`.`ldp_csv` AS JSON;
Is it also possible that you are running it from a different workspace? In the same warehouse where your query has failed, can you try the following and see what you find?
VALUES current_catalog(), current_schema();
SELECT 1 FROM `cxxxxx`.`tgt_dev`.`ldp_csv` LIMIT 1;
SHOW TABLES IN `cxxxxx`.`tgt_dev` LIKE 'ldp_csv';
If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.
Ashwin | Delivery Solution Architect @ Databricks
Helping you build and scale the Data Intelligence Platform.
***Opinions are my own***