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.
Regards,
Ashwin | Delivery Solution Architect @ Databricks
Helping you build and scale the Data Intelligence Platform.
***Opinions are my own***