Skip to content

Commit cfda96e

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#47213
Update Scala code which resolved https://github.com/MicrosoftDocs/azure-docs/issues/47213 ------- cc: @mamccrea GitHub Issue: https://github.com/MicrosoftDocs/azure-docs/issues/47213
1 parent 2af2677 commit cfda96e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-databricks/databricks-extract-load-sql-data-warehouse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ In the cell, press **SHIFT + ENTER** to run the code.
210210
1. You can now load the sample json file as a data frame in Azure Databricks. Paste the following code in a new cell. Replace the placeholders shown in brackets with your values.
211211

212212
```scala
213-
val df = spark.read.json("abfss://<file-system-name>@<storage-account-name>.dfs.core.windows.net/small_radio_json.json")
213+
val df = spark.read.json("abfss://" + fileSystemName + "@" + storageAccountName + ".dfs.core.windows.net/small_radio_json.json")
214214
```
215215
2. Press the **SHIFT + ENTER** keys to run the code in this block.
216216

0 commit comments

Comments
 (0)