cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Does Delta Live Tables only work with Delta tables?

Ryan_Chynoweth
Databricks Employee
Databricks Employee
 
3 REPLIES 3

Ryan_Chynoweth
Databricks Employee
Databricks Employee

Yes, Delta Live Tables can only be used to update Delta tables.

Trodenn
New Contributor III

is there a way to read a delta live table and then have it as a spark dataframe?

Hi @Pierre Nanquetteโ€‹ ,

You cannot use dataframes within a DLT pipeline. However, tables that are created in a pipeline are saved to target databases at which point you can read those tables into dataframes using Scala/Python/R outside of your DLT notebook.

TLDR - create a new notebook and read the data with dataframes.

Does that help?