Thanks for posting your question in the Microsoft Q&A forum.
The error you're encountering suggests that you're trying to reference a LIVE table outside of a DLT dataset definition. This is not supported in Delta Live Tables.
- Ensure all LIVE table references are within DLT dataset definitions
- If you need to reference the table outside of a DLT dataset definition, use the full table name including the catalog and schema, rather than the LIVE schema.
- Make sure you're not indirectly referencing a LIVE table through a view or a temporary table.
- Instead of using spark.read() or other direct reading methods, use dlt.read() to reference tables within your DLT pipeline.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful