Does Delta Live Tables only work with Delta tables?

Ryan_Chynoweth
Databricks Employee
Databricks Employee
 

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?