Skip to content

Commit

Permalink
Added link to the next notebook to explore
Browse files Browse the repository at this point in the history
  • Loading branch information
ioannisatdatabricks committed Jan 26, 2023
1 parent d1aa42c commit 98ddf35
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Retail/01.2 - Delta Live Tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,11 @@

# COMMAND ----------

# MAGIC %md
# MAGIC ## Run the following after having set up and run the DLT job

# COMMAND ----------

# DBTITLE 1,Count the rows in the churn_features table
sqlStatement = "select count(*) from hive_metastore." + databaseForDLT + ".churn_features"
print("Executing:\n" + sqlStatement)
Expand Down Expand Up @@ -175,3 +180,9 @@
sqlStatement = "DESCRIBE HISTORY hive_metastore." + databaseForDLT + ".churn_features"
print("Executing:\n" + sqlStatement)
display(spark.sql(sqlStatement))

# COMMAND ----------

# MAGIC %md
# MAGIC ### Next up
# MAGIC [Build and train a Machine Learning model]($./02 - Machine Learning with MLflow)

0 comments on commit 98ddf35

Please sign in to comment.