From 64e904b3514e6f385da37772a6eeec3bfcede263 Mon Sep 17 00:00:00 2001 From: Nick Hurt Date: Tue, 2 Aug 2022 18:53:09 +0100 Subject: [PATCH] Removed hard-coded database names from final cell These database names were causing the cell to fail --- synapsepoc/notebook/Revenue Summary.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/synapsepoc/notebook/Revenue Summary.json b/synapsepoc/notebook/Revenue Summary.json index bd6719e..645cf1e 100644 --- a/synapsepoc/notebook/Revenue Summary.json +++ b/synapsepoc/notebook/Revenue Summary.json @@ -236,12 +236,12 @@ "df = spark.sql(\"\"\"\r\n", " SELECT a.Id AS account_ID, a.name AS account_name, b.fullname AS contact_name, b.emailaddress1 AS contact_email, b.donotemail\r\n", " FROM\r\n", - " dataverse_salestrial_unqb032d835bab8474f8813337f0e197.account a\r\n", + " account a\r\n", " INNER JOIN\r\n", " (\r\n", " SELECT parentcustomerid, fullname, emailaddress1, donotemail\r\n", " FROM \r\n", - " dataverse_salestrial_unqb032d835bab8474f8813337f0e197.contact\r\n", + " contact\r\n", ") b\r\n", "ON a.Id = b.parentcustomerid\r\n", "\"\"\")\r\n", @@ -256,4 +256,4 @@ } ] } -} \ No newline at end of file +}